window.onload = getMsg;
window.onresize = resizeDiv;
window.onerror = function(){}
var divTop,divLeft,divWidth,divHeight,docHeight,docWidth,objTimer,i = 0;
function getMsg()
{
try{
divTop = parseInt(document.getElementById("eMeng1").style.top,10)
divLeft = parseInt(document.getElementById("eMeng1").style.left,10)
divHeight = parseInt(document.getElementById("eMeng1").offsetHeight,10)
divWidth = parseInt(document.getElementById("eMeng1").offsetWidth,10)
docWidth = document.body.clientWidth;
docHeight = document.body.clientHeight;
document.getElementById("eMeng1").style.top = parseInt(document.body.scrollTop,10) + docHeight + 10;//  divHeight
document.getElementById("eMeng1").style.left = parseInt(document.body.scrollLeft,10) + docWidth - divWidth
document.getElementById("eMeng1").style.visibility="visible"
objTimer = window.setInterval("moveDiv()",5)
}
catch(e){}
}
function resizeDiv()
{
i+=1
if(i>1800) closeDiv()   //如果想不自动消失由用户来自己关闭就删除这句
try{
divHeight = parseInt(document.getElementById("eMeng1").offsetHeight,10)
divWidth = parseInt(document.getElementById("eMeng1").offsetWidth,10)
docWidth = document.body.clientWidth;
docHeight = document.body.clientHeight;
document.getElementById("eMeng1").style.top = docHeight - divHeight + parseInt(document.body.scrollTop,10)
document.getElementById("eMeng1").style.left = docWidth - divWidth + parseInt(document.body.scrollLeft,10)
}
catch(e){}
}
function moveDiv()
{
try
{
if(parseInt(document.getElementById("eMeng1").style.top,10) <= (docHeight - divHeight + parseInt(document.body.scrollTop,10)))
{
window.clearInterval(objTimer)
objTimer = window.setInterval("resizeDiv()",1)
}
divTop = parseInt(document.getElementById("eMeng1").style.top,10)
document.getElementById("eMeng1").style.top = divTop - 1
}
catch(e){}
}
function closeDiv()
{
document.getElementById('eMeng1').style.visibility='hidden';
if(objTimer) window.clearInterval(objTimer)
}
				

document.write("<DIV id=eMeng1 style='BORDER-RIGHT: #455690 1px solid; BORDER-TOP: #a6b4cf 1px solid; Z-INDEX:99999; LEFT: 0px; VISIBILITY: hidden; BORDER-LEFT: #a6b4cf 1px solid; WIDTH: 200px; BORDER-BOTTOM: #455690 1px solid; POSITION: absolute; TOP: 0px; HEIGHT: 126px; BACKGROUND-COLOR: #c9d3f3'>");
document.write("<TABLE style='BORDER-TOP: #ffffff 1px solid; BORDER-LEFT: #ffffff 1px solid' cellSpacing=0 cellPadding=0 width=100% HEIGHT=100% bgColor=#ffffff border=0>");
document.write("<TBODY><TR bgColor=#6699cc>");
document.write("<TD style='font-weight: normal; font-size: 12px; background-image: url(''); color: #ffffff; padding-left: 6px; padding-top: 2px' vAlign=bottom  align=left><font color=#ffffff>&nbsp;网站温馨提示</font></TD>");
document.write("<TD style='background-image: url(''); padding-right: 2px; padding-top: 2px' vAlign=center align=right ><span title=关闭 style='CURSOR: hand;color:white;font-size:16px;font-weight:bold;margin-right:4px;' onclick=closeDiv() >×</span></TD>");
document.write("</TR><TR><TD colspan =2 style='background-image: url(''); padding-right: 1px; padding-bottom: 1px' height=110>");
document.write("<img src='images/xt1.jpg' border=0 usemap='#Map6'></TD></TR></TBODY></TABLE></DIV>");



