//playSwf("134x49_torino.swf",134,49);
function playSwf(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";
	document.write(str);
}
//playAvi("134x49_torino.avi",134,49);
function playAvi(fPath,width,height) 
{	
	var str;
	str = "<embed src='"+ fPath +"' border='0' width='"+ width +"' height='"+ height +"' type='application/x-mplayer2'></embed>"
	document.write(str);
}
//playRm("134x49_torino.rm",134,49);
function playRm(fPath,width,height) 
{	
	var str;
	str = "<object>\n\r";
	str += "	<PARAM NAME='CONTROLS' VALUE='ImageWindow'><param name=ShowStatusBar value=-1>\n\r";
	str += "	<PARAM NAME='AUTOSTART' Value='true'>\n\r";
	str += "	<PARAM NAME='SRC' VALUE='"+ fPath +"'>\n\r";
	str += "	<embed height='"+ height +"' width='"+ width +"' controls='ImageWindow' src='"+ fPath +"?embed' type='audio/x-pn-realaudio-plugin' autostart='true' nolabels0'1' autogotourl='-1'>\n\r";
	str += "</object>\n\r";
	document.write(str);
}
//playMpg("134x49_torino.mpg",134,49);
function playMpg(fPath,width,height) 
{	
	var str;
	str = "<object classid='clsid:05589FA1-C356-11CE-BF01-00AA0055595A' id='ActiveMovie1' width='"+ width +"' height='"+ height +"'>\n\r";
	str += "	<param name='AutoStart' value='-1'>\n\r";
	str += "	<param name='Filename' value='"+ fPath +"' valuetype='ref'>\n\r";
	str += "	<param name='ShowControls' value='-1'>\n\r";
	str += "	<param name='ShowDisplay' value='0'>\n\r";
	str += "</object>\n\r";
	document.write(str);
}
//playRam("134x49_torino.ram",134,49);
function playRam(fPath,width,height) 
{	
	var str;
	str = "<object>\n\r";
	str += "	<PARAM NAME='CONTROLS' VALUE='ImageWindow'>\n\r";
	str += "	<PARAM NAME='AUTOSTART' Value='true'><param name='ShowControls' value='-1'>\n\r";
	str += "	<PARAM NAME='SRC' VALUE='"+ fPath +"'>\n\r";
	str += "	<embed height='"+ height +"' width='"+ width +"' controls='ImageWindow' src='"+ fPath +"?embed' type='audio/x-pn-realaudio-plugin' autostart='true' nolabels0'1' autogotourl='-1'>\n\r";
	str += "</object>\n\r";
	document.write(str);
}
//playWmv("134x49_torino.wmv",134,49);
function playWmv(fPath,width,height)
{alert("123");
	var str;
	str = "<object classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' id='mid1' width='"+ width +"' height='"+ height +"'>"
	str += "    <param name='Filename' value="+ fPath +">"
	str += "</object> "
	
	document.write(str);
}
