var AD={

	imgURL: "/m/i/topic_24jq_dh/dh_banner.jpg",

	link: "/static/html/topic_24jq_dh.shtml",

	linker: document.createElement("a"),

	load: function(){

		try{
		
			AD.frame=document.createElement("div");

			AD.frame.className="weatherwapper";

			AD.panel=document.createElement("div");

			AD.panel.style.width="960px";
			AD.panel.style.margin="0 auto";

			AD.linker.href=AD.link;
			AD.linker.target="_blank";

			AD.linker.appendChild(AD.img);

			AD.frame.appendChild(AD.panel);

			AD.panel.appendChild(AD.linker);

			document.body.insertBefore(AD.frame,document.getElementById("Con"));

			setTimeout(AD.close,20000);

		}catch(e){}

	},

	init: function(){
		AD.img=document.createElement("img");
		AD.img.alt="Adverticement";
		AD.img.src=AD.imgURL;
//		AD.img.style="cursor:pointer;";
//		AD.img.onclick=AD.ll;
		setTimeout(AD.load,3000);
	},

	close: function(){
		try{
			AD.frame.parentNode.removeChild(AD.frame);
		}catch(e){}
	}
}
   window.LOAD.push(AD.init);