﻿
var yt_xml;
var imgUrl1="";
var imgtext1="";
var imgLink1="";            
var imgUrl2="";
var imgtext2="";
var imgLink2="";
var imgUrl3="";
var imgtext3="";
var imgLink3="";
var imgUrl4="";
var imgtext4=""
var imgLink4="";
var imgUrl5="";
var imgtext5="";
var imgLink5=""; 
var pics="";
var links="";
var texts="";
var focus_width=240;
var focus_height=165;
var text_height=16;
var swf_height = focus_height+text_height;
function yt_GetXML()
{
    yt_xml = new ActiveXObject("Microsoft.XMLDOM");
    yt_xml.async=true;
    yt_xml.load("xml/FlashAds.xml");
    if(yt_xml.parseError!=0)
    return;
    else
    {   
         yt_xml.onreadystatechange = function GetReady()
         {   
   
             if(yt_xml.readyState==0) document.all.flash_ads.innerHTML="初始化...";
             if(yt_xml.readyState==1) document.all.flash_ads.innerHTML="读取中";
             if(yt_xml.readyState==2) document.all.flash_ads.innerHTML="读取成功！";
             if(yt_xml.readyState==3) document.all.flash_ads.innerHTML="交互中...";
             
             if(yt_xml.readyState==4)
             {       
                    
                    document.all.flash_ads.innerHTML="完成！";                
                    imgUrl1=yt_xml.documentElement.selectNodes("//ad/url")(0).text;                   
                    imgtext1=yt_xml.documentElement.selectNodes("//ad/description")(0).text;
                    imgLink1=escape(""+yt_xml.documentElement.selectNodes("//ad/httpurl")(0).text+"");            
                    imgUrl2=yt_xml.documentElement.selectNodes("//ad/url")(1).text;
                    imgtext2=yt_xml.documentElement.selectNodes("//ad/description")(1).text;
                    imgLink2=escape(""+yt_xml.documentElement.selectNodes("//ad/httpurl")(1).text+"");
                    imgUrl3=yt_xml.documentElement.selectNodes("//ad/url")(2).text;
                    imgtext3=yt_xml.documentElement.selectNodes("//ad/description")(2).text;
                    imgLink3=escape(""+yt_xml.documentElement.selectNodes("//ad/httpurl")(2).text+"");
                    imgUrl4=yt_xml.documentElement.selectNodes("//ad/url")(3).text;
                    imgtext4=yt_xml.documentElement.selectNodes("//ad/description")(3).text;
                    imgLink4=escape(""+yt_xml.documentElement.selectNodes("//ad/httpurl")(3).text+"");
                    imgUrl5=yt_xml.documentElement.selectNodes("//ad/url")(4).text;
                    imgtext5=yt_xml.documentElement.selectNodes("//ad/description")(4).text;
                    imgLink5=escape(""+yt_xml.documentElement.selectNodes("//ad/httpurl")(4).text+""); 
                     pics=imgUrl1+"|"+imgUrl2+"|"+imgUrl3+"|"+imgUrl4+"|"+imgUrl5; 
                     links=imgLink1+"|"+imgLink2+"|"+imgLink3+"|"+imgLink4+"|"+imgLink5;
                     texts=imgtext1+"|"+imgtext2+"|"+imgtext3+"|"+imgtext4+"|"+imgtext5; 

                      document.all.flash_ads.innerHTML='<span style="border:0px;"><a target="_blank" href="javascript:goUrl()"/><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" border="0px" width="'+ focus_width +'" height="'+ swf_height +'">'
                     +'<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="sysimages/focus.swf"><param name="quality" value="high"><param name="bgcolor" value="#F0F0F0">'
                     +'<param name="menu" value="false"><param name=wmode value="opaque">'
                     +'<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">'
                     +'<embed src="pixviewer.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#F0F0F0" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' 
                     +'</object></span><a target="_blank" href="javascript:goUrl()"></a><span id="focustext"></span>';    
                    delete(yt_xml);  
               }
         }
   
   }
}

//var setInterval_timer;
//setInterval_timer=window.setInterval("yt_GetXML()",60000*5);
