function flash(url,width,height) {
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0" width="'+width+'" height="'+height+'">');
    document.write('<param name="movie" value="'+url+'" />');
    document.write('<param name="quality" value="high" />');
    document.write('<param name="wmode" value="Opaque" />');
    document.write('<param name="menu" value="false" />');
    document.write('<embed src="'+url+'" menu="false" quality="high" wmode="Opaque" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>');
    document.write('</object>');
}
/*Banner Input*/
function banner(url,width,height,files) {
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0" width="'+width+'" height="'+height+'">');
    document.write('<param name="movie" value="'+url+'" />');
    document.write('<param name="menu" value="false">');
    document.write('<param name="quality" value="high" />');
    document.write('<param name="flashvars" value="bcastr_xml_url='+files+'&bcastr_config=0x111111:文字颜色|2:文字位置|0xffffff:文字背景颜色|6:文字背景透明度|0xffffff:按键文字颜色|0x298BD6:按键默认颜色|0x000033:按键当前颜色|3:自动播放时间(秒)|2:图片过渡效果|1:是否显示按钮|_self:打开窗口" />');
    document.write('<embed flashvars="bcastr_xml_url='+files+'&bcastr_config=0x111111:文字颜色|2:文字位置|0xffffff:文字背景颜色|6:文字背景透明度|0xffffff:按键文字颜色|0x298BD6:按键默认颜色|0x000033:按键当前颜色|3:自动播放时间(秒)|2:图片过渡效果|1:是否显示按钮|_self:打开窗口"></embed>');
    document.write('</object>');
}
/*Png透明显示*/
function isIE(){
if (navigator.appName!="Microsoft Internet Explorer") {return false}
return true
} 
function correctPNG() 
{
   for(var i=0; i<document.images.length; i++)
   {
   var img = document.images[i]
   var LW=img.width
   var LH=img.height
   var imgName = img.src.toUpperCase()
   if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
   { 
         img.style.filter+="progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+img.src+", sizingmethod=scale);"
         img.src="images/blank.gif"//1px.gif为1px*1px的透明gif图片
         img.width=LW
         img.height=LH
   }
   }
}
if (isIE()) {window.attachEvent("onload", correctPNG);}