//ez illeszti a flash-t a html-be
<!--
function input(input,width,height)
{
	document.write('<div align="center" id="flash">');
	document.write('<object type="application/x-shockwave-flash" data="' + input + '" width="' + width + '" height="' + height + '">');
	document.write('<param name="movie" value="' + input + '"/>');
	document.write('<param name = "loop" value = "true" />');
	document.write('<param name = "menu" value = "false" />');
	document.write('<embed type="application/x-shockwave-flash" src="'+input+'" width="'+width+'" height="'+height+'">');
	document.write('</embed>');
	document.write('</object>');
	document.write('</div>');
	
}
-->
