/*页面右下脚弹出层*/
//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("popwin").style.top,10)
divLeft = parseInt(document.getElementById("popwin").style.left,10)
divHeight = parseInt(document.getElementById("popwin").offsetHeight,10)
divWidth = parseInt(document.getElementById("popwin").offsetWidth,10)
docWidth = document.body.clientWidth;
docHeight = document.body.clientHeight;
document.getElementById("popwin").style.top = parseInt(document.body.scrollTop,10) + docHeight + 10;// divHeight
document.getElementById("popwin").style.left = parseInt(document.body.scrollLeft,10) + docWidth - divWidth
document.getElementById("popwin").style.visibility="visible"
objTimer = window.setInterval("moveDiv()",10)
}
catch(e){}
}

function resizeDiv()
{
//i+=1
//if(i>1300) closeDiv() //自动关闭
try{
divHeight = parseInt(document.getElementById("popwin").offsetHeight,10)
divWidth = parseInt(document.getElementById("popwin").offsetWidth,10)
docWidth = document.body.clientWidth;
docHeight = document.body.clientHeight;
document.getElementById("popwin").style.top = docHeight - divHeight + parseInt(document.body.scrollTop,10)
document.getElementById("popwin").style.left = docWidth - divWidth + parseInt(document.body.scrollLeft,10)
}
catch(e){}
}

function moveDiv()
{
try
{
if(parseInt(document.getElementById("popwin").style.top,10) <= (docHeight - divHeight + parseInt(document.body.scrollTop,10)))
{
window.clearInterval(objTimer)
objTimer = window.setInterval("resizeDiv()",1)
}
divTop = parseInt(document.getElementById("popwin").style.top,10)
document.getElementById("popwin").style.top = divTop - 1
}
catch(e){}
}
function closeDiv()
{
	document.getElementById('popwin').style.visibility='hidden';
	if(objTimer) window.clearInterval(objTimer);
}

function removeDiv()
{
	var obj = document.getElementById('popwin');
	obj.parentNode.removeChild(obj);
	if(objTimer) window.clearInterval(objTimer);
}