// JavaScript Document

function ieSplash(file)
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="100%" height="100%">');
	
    document.write('<param name="movie" value="+file+">');
	
    document.write('<param name="quality" value="high">');
	
	document.write('<param name="menu" value="false">');
	document.write('<param name="scale" value="noscale" />');
	//document.write('<param name="bgcolor" value="#150E0A" />');
				   
	document.write('<embed src="index1.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" quality="high" scale="yes" width="100%" height="100%">');
	
	document.write('</embed>');
	
	document.write('</object>');

}
//playSwfByParm("134x49_torino.swf",134,49);
function playSwfByParm(fPath,width,height)
{
	var str;
	if (fPath != "")
	{
		str = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" id=\"E159Flash\" width=\""+width+"\" height=\""+height+"\">\n\r";
		str += "	<param name=\"movie\" value=\""+fPath+"\" />\n\r";
		str += "	<param name=\"quality\" value=\"high\" />\n\r";
		str += "	<param name=\"menu\" value=\"false\" />\n\r";
		str += "	<param name=\"scale\" value=\"scale\" />\n\r";
		str += "	<embed src=\""+fPath+"\" quality=\"high\" name=\"E159Flash\" width=\""+width+"\" height=\""+height+"\" type=\"application/x-shockwave-flash\"></embed>\n\r";
		str += "</object>\n\r";
		document.write(str);
	}
}






			    
                 

