var showad = true;
var Bottompx=120;
var AdDivW=83; 
var AdDivH=22; 
var PageWidth=1010;
var MinScreenW=700;   

var ClosebuttonHtml = "";
var AdContentHtml = "<div><a href=\"#\"><img border=\"0\" src=\"images/arrow_up.gif\" alt=\"\" /></a></div>";
document.write ("<div id=\"Javascript.RightDiv\" style=\"position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000;width:"+AdDivW+"px;height:"+AdDivH+"px;top:-1000px;word-break:break-all;display:none;\">"+ClosebuttonHtml+"<div>"+AdContentHtml+"</div></div>");
function scall(){
    if(!showad){return;}
    if (window.screen.width<MinScreenW){
        
        showad = false;
        document.getElementById("Javascript.RightDiv").style.display="none";
        return;
    }
    var Borderpx = ((window.screen.width-PageWidth)/2-AdDivW)/2;

    document.getElementById("Javascript.RightDiv").style.display="";
    document.getElementById("Javascript.RightDiv").style.top=document.documentElement.scrollTop+document.documentElement.clientHeight-AdDivH-Bottompx;
    document.getElementById("Javascript.RightDiv").style.right="40px";
}

function hidead()
{
    showad = false;
    document.getElementById("Javascript.RightDiv").style.display="none";
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;