// inserts FLASH through JS - fix for IE EOLAS
// params: FLASH width, FLASH height, FLASH source
// made by MH
function insert_flash_thru_js(width,height,src){
	document.write('<object width="'+width+'" height="'+height+'" data="'+src+'" type="application/x-shockwave-flash">');
	document.write('	<param value="'+src+'" name="movie" />');
	document.write('	<param value="high" name="quality" />');
	document.write('	<param value="false" name="menu" />');
	document.write('</object>');
}