//writeParam(); 
var temp;
function writeParam() 
{ 
	var col=document.all.tags("script"); 
	var jsrc=col.item(col.length-1).src; 
	//alert(jsrc);
	var i=jsrc.indexOf("?"); 
	var words=jsrc.substr(i+1,jsrc.length); 
	temp = words;
	//alert(words);
	//return words;
	//document.write(words); 
}

//playSwf("134x49_torino.swf",134,49);
function playSwf(fPath,width,height) 
{	
	//alert(fPath,width,height);
	var str;
	str = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" 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=\"wmode\" value=\"transparent\" />\n\r";
	str += "	<embed src=\""+fPath+"\" quality=\"high\"  width=\""+width+"\" height=\""+height+"\" type=\"application/x-shockwave-flash\"></embed>\n\r";
	str += "</object>\n\r";
	//alert(str);
	document.write(str);
}

function playSwfByParm(fPath,width,height)
{
	var str;
	if (fPath != "")
	{
		str = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" 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=\"wmode\" value=\"transparent\" />\n\r";
		str += "	<embed src=\""+fPath+"\" quality=\"high\"  width=\""+width+"\" height=\""+height+"\" type=\"application/x-shockwave-flash\"></embed>\n\r";
		str += "</object>\n\r";
		document.write(str);
	}
}