

var showad = true;
var Toppx = 150;   //上端位置
var AdDivW = 10;  //宽度
var AdDivH = 260;  //高度
var PageWidth = 800; //页面多少宽度象素下正好不出现左右滚动条
var MinScreenW = 1024; //显示广告的最小屏幕宽度象素 
var AdContentHtml = '<div id="hidden_it"><IMG class=cImg src="http://cj.qidian.com/svnad/images/15x260_091109aa.gif"></div><div id="show_it"><!--<embed src="http://cj.qidian.com/svnad/flash/readpage-100X260-1-090921.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100" height="260"></embed>--><a href="http://www.qidian.com/game/Default.aspx" target="_blank"><img border=0 src="http://cj.qidian.com/svnad/images/100x260_091109aa.gif"></a><div style="text-align:right;width:100px;background-color:#DDDDDD;background-color:#DDDDDD; !important;padding-bottom:2px;padding-top:2px" onmouseout="had()" ><a href="JavaScript:;" onclick="hidead()"  style="color:#000000;text-decoration:none;font-size:12px;">关闭&nbsp;</a></div></div>';
document.write ('<div id="LeftDiv" onmouseover="show_cp()" style="position: absolute;z-index:1000;width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;"><div>'+AdContentHtml+'</div></div>');
document.getElementById("show_it").style.display="none";
document.getElementById("LeftDiv").style.display="";
function scall(){
 if(!showad){return;}
 if (window.screen.width<MinScreenW){
  //alert("临时提示：\n\n显示器分辨率宽度小于"+MinScreenW+",不显示广告");
  showad = false;
  document.getElementById("LeftDiv").style.display="none";
  return;
 }
	document.getElementById("LeftDiv").style.top=document.body.scrollTop+Toppx;
	document.getElementById("LeftDiv").style.left=document.body.scrollLeft;
	document.body.focus();
}
function hidead()
{
 showad = false;
 document.getElementById("LeftDiv").style.display="none";
}
function had()
{
document.getElementById("hidden_it").style.display="";
document.getElementById("show_it").style.display="none";

}

function show_cp(){
	document.getElementById("hidden_it").style.display="none";
	document.getElementById("show_it").style.display="";
	document.body.focus();
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
document.body.focus();




