//显示样式(左右下角)  
document.writeln("<style type=\"text\/css\">");  
document.writeln(".corner {position:absolute; z-index: 100;}");  
document.writeln(".corner a img{width:150px;height:150px;}");
document.writeln("<\/style>");  

//右下角漂浮
document.writeln("<div id=\"qqaddiv\" class=\"corner\"> ");
document.writeln("<br><a href=\"javascript:close_qqaddiv();\" title=\"关闭上面的广告\">×关闭<\/a>");  
document.writeln("<a href=http://www.7722.com/djt target=_blank><img src=http://www.chaoguba.com/images/77222.gif border=0></a>"); 
document.writeln("</div>");
//上边三行是广告代码,div的ID改过之后下边也要改
var closeB=false;
var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body;
var adst = document.getElementById("qqaddiv").style;
adst.top = ( bodyfrm.clientHeight - 150 ) + "px";
adst.left = ( bodyfrm.clientWidth - 195 ) + "px";
function moveR() {
	if(closeB)
	{
	adst.display = "none";
	}
	else
	{
	adst.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 170 ) + "px";
	adst.left = ( bodyfrm.scrollLeft + bodyfrm.clientWidth - 160 ) + "px";
	}
}

setInterval("moveR();", 90);



//关闭按钮  
function close_qqaddiv(){  
    qqaddiv.style.visibility='hidden';  
}  
function close_qqaddiv2(){  
    qqaddiv2.style.visibility='hidden';  
}  
 
