function insert(ci,id,adid,w,h,img){//id:页面ID;ad_1:广告
var str;
var imgstr="";
if(!ci){
return ;
}
if(!document.getElementById(id)){
return ;
}


w=w?w:"100";
h=h?h:"100";
imgstr=img?"&img="+img:"";
str='<iframe MARGINHEIGHT=0 MARGINWIDTH=0 FRAMEBORDER=0 width='+w+' height='+h+' SCROLLING=NO src="/js/insert.asp?adid='+adid+imgstr+'&ci='+ci+'"  scrolling="no" ><\/iframe >'
document.getElementById(id).innerHTML=document.getElementById(id).innerHTML+str;
}

//flash("fla/indextopbanner/indextop_banner.swf",1024,800,1,"iif")
function insertflash(src,width,height,tr,id){
    object = '';
    object += '<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="param" width="'+width+'" height="'+height+'">';
    object += '<param name="movie" value="'+src+'">';
    if(tr=='1'){
         object += '<param name="wmode" Value="Transparent">';
    }
    object += '<embed src="'+src+'" quality="high" ';    
    if(tr=='1'){
        object += ' wmode="transparent" ';
    }
    object += 'menu="false" width="'+width+'" height="'+height+'" swliveconnect="true" id="param" name="param" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
    object += '</object>';
   if(id){document.getElementById(id).innerHTML=object;}
   else{document.write(object);}

}
