/*show the flash*/
function showswf(swfurl,swfwidth,swfheight,istran)  //flashµØÖ·,¿í,¸ß,ÊÇ·ñÍ¸Ã÷(true,false)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+swfwidth+'" height="'+swfheight+'">');
	document.write('<param name="movie" value="'+swfurl+'" />');
	document.write('<param name="quality" value="high" />');
	if(istran)
	{
		document.write("<param name=\"wmode\" value=\"transparent\">");
	}
	document.write('<embed src="'+swfurl+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+swfwidth+'" height="'+swfheight+'"></embed>');
	document.write('</object>');
}
