
function flash(film_url,szel,mag){
var 
	htmlcode='<object id="'+film_url+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+szel+'" height="'+mag+'">';
	htmlcode+='<param name="movie" value="'+film_url+'" />';
	htmlcode+='<param name="quality" value="high" />';
	htmlcode+='<param name="menu" value="true" />';
	htmlcode+='<param name="wmode" value="window" />';
	htmlcode+='<embed src="'+film_url+'" wmode="window" quality="high" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+szel+'" height="'+mag+'"></embed>';
	htmlcode+='</object>';

	document.write(htmlcode);
}


function flash_tr(film_url,szel,mag){
var 
	htmlcode='<object id="'+film_url+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+szel+'" height="'+mag+'">';
	htmlcode+='<param name="movie" value="'+film_url+'" />';
	htmlcode+='<param name="quality" value="high" />';
	htmlcode+='<param name="menu" value="true" />';
	htmlcode+='<param name="wmode" value="transparent" />';
	htmlcode+='<embed src="'+film_url+'" wmode="transparent" quality="high" menu="false" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+szel+'" height="'+mag+'"></embed>';
	htmlcode+='</object>';

	document.write(htmlcode);
}