var showad = true;
var Toppx = 80;
var AdDivW = 100;
var AdDivH = 340;
var PageWidth = 800;
var MinScreenW = 1024;
var ClosebuttonHtml = '<div align="right" style="position: absolute;top:0px;right:0px;margin:2px;padding:2px;z-index:2000;"><a href="javascript:;" title="关闭浮动广告条" onclick="hidead()" style="color:black;text-decoration:none;font-size:16px;">影响我阅读，立刻闭了你！</a></div>' 
var AdContentHtml = '<div align="center"><font color="#FF0000" face="隶书" size="6"><br>传<br>承<br>中<br>华<br>医<br>学<br>精<br>髓</font></div>'; 
var AdContentHtml2 = '<div align="center"><font color="#FF0000" face="隶书" size="6"><br>开<br>创<br>现<br>代<br>保<br>健<br>先<br>河</font></div>'; 
document.write ('<div id="Javascript.LeftDiv" style="position: absolute;z-index:1000;width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml+'</div></div>'); 
document.write ('<div id="Javascript.RightDiv" style="position: absolute;border:z-index:1000;width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml2+'</div></div>'); 
function scall(){ 
if(!showad){return;} 
if (window.screen.width<MinScreenW){ 
showad = false; 
document.getElementById("Javascript.LeftDiv").style.display="none"; 
document.getElementById("Javascript.RightDiv").style.display="none"; 
return;
}
var Borderpx = ((window.screen.width-PageWidth)/2-AdDivW)/2;
document.getElementById("Javascript.LeftDiv").style.display=""; 
document.getElementById("Javascript.LeftDiv").style.top=document.body.scrollTop+Toppx; 
document.getElementById("Javascript.LeftDiv").style.left=document.body.scrollLeft+Borderpx; 
document.getElementById("Javascript.RightDiv").style.display=""; 
document.getElementById("Javascript.RightDiv").style.top=document.body.scrollTop+Toppx; 
document.getElementById("Javascript.RightDiv").style.left=document.body.scrollLeft+document.body.clientWidth-document.getElementById("Javascript.RightDiv").offsetWidth-Borderpx; 
} 
function hidead() 
{ 
showad = false; 
document.getElementById("Javascript.LeftDiv").style.display="none"; 
document.getElementById("Javascript.RightDiv").style.display="none"; 
} 
window.onscroll=scall; 
window.onresize=scall; 
window.onload=scall; 
