

var is_IE = false;

if (document.getElementById || document.all) {
	var agt=navigator.userAgent.toLowerCase();
	if (agt.indexOf("firefox") != -1) {
	 //nothing
	} else {
		is_IE = true;
	}
}

function runFlash(x){
	if (is_IE){
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="538" height="250">\n');
		document.write('<param name="movie" value="flash/home_page_2.swf"> \n');
		document.write('<param name="quality" value="high">\n');
		document.write('<param name="menu" value="false">\n');
	} else {	
		document.write('<object data="flash/home_page_2.swf" width="538" height="250" type="application/x-shockwave-flash">\n');
		document.write('<param name="quality" value="high">\n');
		document.write('<param name="menu" value="false">\n');
		document.write('<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer">\n');
		//document.write('</object>\n');
	}
	document.write('</object>\n');
}
