﻿
	document.writeln('<div id="ShowAD" style="position:absolute; z-index: 100;"> ');
	document.writeln('<div class="closead" onclick="closead();" style="font-weight:bolder; font-size:13px; color:#000; width:300px;cursor:pointer;text-align:right">关闭&nbsp;</div>');
	document.writeln('<iframe scrolling="no" style="width:300px;height:248px;" frameborder="0" src="http://dangjian.people.com.cn/GB/132176/index.html"></iframe>');
	document.writeln('</div>');

	var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body;
	var ad = document.getElementById("ShowAD").style;
	ad.top = ( bodyfrm.clientHeight - 248 ) + "px";
	ad.left = ( bodyfrm.clientWidth - 300 ) + "px";
	setInterval("moveR();", 80);


function moveR() {
	ad.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 248 ) + "px";
	ad.left = ( bodyfrm.scrollLeft + bodyfrm.clientWidth - 300 ) + "px";
}

function closead()
{
	ad.display='none';
}
