function displayFlash(src, width, height) {

	var rozm_x = width+20;
	var rozm_y = height+30;

      Win1 = window.open("","displayFlash1",'width=' + rozm_x + ',height=' + rozm_y + ',resizable=yes,scrollbars=no,menubar=no,top=0,left=0' );

	Win1.document.write('<head>');
	Win1.document.write('<title>Web Film Clips and Video</title>');
	Win1.document.write('</head>');
	Win1.document.write('<body bgcolor=#1a50b8>');
	Win1.document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="' + width + '" height="' + height +'" id="journey" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="' + src + '" /><param name="quality" value="high" /><param name="bgcolor" value="#1a50b8" /><embed src="' + src + '" quality="high" bgcolor="#1a50b8" width="' + width + '" height="' + height + '" name="" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
	Win1.document.write('</body>');
	Win1.document.close();

}
