//ez illeszti a flash-t a html-be
<!--
function input(input,width,height,param)
{
	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('<param name = "FlashVars" value = "' + param + '" />');
	document.write('<embed type="application/x-shockwave-flash" src="'+input+'" width="'+width+'" height="'+height+'" flashvars="' + param + '">');
	document.write('</embed>');
	document.write('</object>');
}
-->