/* 在网页上显示 flash */
/* 为了欺骗 w3c 标准，必须用 js 来显示 flash */
function showflash(url,thewidth,theheight,trans)
{
	obj='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+thewidth+'" height="'+theheight+'">';
	name='<param name="movie" value="'+url+'" />';
	emb='<embed src="'+url+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="fma" width="'+thewidth+'" height="'+theheight+'"></embed>';
	
	document.write(obj);
document.write(name);
document.write('<param name="quality" value="high" />');
if(trans==1)
	document.write('<param name="wmode" value="transparent">');
document.write(emb);
document.write('</object>');
}
/* 网页上的 magnetic 品质 和 售后政策的 窗口 */
function pzfw(url)
{
	window.open(url,'','scrollbars=yes,width=643,height=600');
}
