
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+"\" wmode=\"transparent\" type=\"application/x-shockwave-flash\"></embed>\n\r";
	str += "</object>\n\r";

	document.write(str);
}

function writeCallbackFlash(fPath,width,height)
{
	var str;
	str ="<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" width=\""+width+"\" height=\""+height+"\" id=\"flashobject\">\r\n";
	str += "	<param name=\"allowScriptAccess\" value=\"always\" />\r\n";
	str += "	<param name=\"movie\" value=\""+fPath+"\" />\r\n";
	str += "	<param name=\"quality\" value=\"high\" />\n\r";
	str += "	<param name=\"wmode\" value=\"transparent\" />\r\n";
	str += "	<embed src=\""+fPath+"\" quality=\"high\"  width=\""+width+"\" height=\""+height+"\" type=\"application/x-shockwave-flash\" name=\"flashobject\" allowScriptAccess=\"always\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>\r\n";
	str += "</object>\r\n";
	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);
	}
}

