/*===============================================================================================================
函数名:setFlash
作 用:去掉flash激活提示
参 数:FlashURL Flash路径,FlashWidth Flash宽度,FlashHeight Flash高度
================================================================================================================*/
function setFlash(FlashURL,FlashWidth,FlashHeight)
{
   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="'+FlashWidth+'" height="'+FlashHeight+'">');
   document.write('<param name="movie" value="'+FlashURL+'" />');
   document.write('<param name="menu" value="false" />');
   document.write('<param name="quality" value="high" />');
   document.write('<embed src="'+FlashURL+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+FlashWidth+'" height="'+FlashHeight+'"></embed>\n');
   document.write('</object>');
}
