function loadswf(surl,swidth,sheight){
	document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0\" width=\""+swidth+"\" height=\""+sheight+"\">");
	document.write("<param name=\"movie\" value=\""+surl+"\">");
	document.write("<param name=\"play\" value=\"true\">");
	document.write("<param name=\"loop\" value=\"true\">");
	document.write("<param name=\"quality\" value=\"high\">");
	document.write("<param name=\"WMode\" value=\"Transparent\">");
	document.write("<embed src=\""+surl+"\" play=\"true\" loop=\"true\" quality=\"high\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" width=\""+swidth+"\" height=\""+sheight+"\" WMode=\"Transparent\">");
	document.write("</embed></object>");
}