
//playSwf(fPath,width,height);
function playSwf(fPath,width,height) 
{	
	//alert(fPath,width,height);
	var str;
	str = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+width+"\" height=\""+height+"\">";
	str += "<param name=\"movie\" value=\""+fPath+"\" />";
	str += "<param name=\"quality\" value=\"high\" />";
	str += "<param name=\"wmode\" value=\"transparent\" />";
	str += "<embed src=\""+fPath+"\" quality=\"high\"  width=\""+width+"\" height=\""+height+"\" type=\"application/x-shockwave-flash\"></embed>";
	str += "</object>";
	//alert(str);
	document.write(str);
}