function swfPlayP(flashfile, flash_width, flash_height){
	var str = "<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
	str +="codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\"";
	str +="WIDTH="+ flash_width +" HEIGHT="+ flash_height +">";
	str +="<param name=\"wmode\" value=\"transparent\" />";
	str +="<param name=\"movie\" value="+ flashfile +">";	
	str +="<embed src="+ flashfile +" wmode=\"transparent\" width=\""+ flash_width +"\" height=\""+ flash_height +"\"";
	str +="allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\">";
	str +="</OBJECT>";
	document.write(str);
}