window.onload = getMsg;
window.onresize = resizeDiv;
window.onerror = function(){}
var sdivTop,sdivLeft,sdivWidth,sdivHeight,sdocHeight,sdocWidth,sobjTimer,i = 0;
function getMsg()
{
       try{
       sdivTop = parseInt(document.getElementById("windlocation").style.top,10)
       sdivLeft = parseInt(document.getElementById("windlocation").style.left,10)
       sdivHeight = parseInt(document.getElementById("windlocation").offsetHeight,10)
       sdivWidth = parseInt(document.getElementById("windlocation").offsetWidth,10)
       sdocWidth = document.body.clientWidth - 20;
       sdocHeight = document.body.clientHeight;
       document.getElementById("windlocation").style.top = parseInt(document.body.scrollTop,10) + sdocHeight + 10;//  divHeight
       document.getElementById("windlocation").style.left = parseInt(document.body.scrollLeft,10) + sdocWidth - sdivWidth
       document.getElementById("windlocation").style.visibility="visible"
       sobjTimer = window.setInterval("moveDiv()",10)
       }
       catch(e){}
}

function resizeDiv()
{
       i+=1
       if(i>15000) closeDiv()
       try{
       sdivHeight = parseInt(document.getElementById("windlocation").offsetHeight,10)
       sdivWidth = parseInt(document.getElementById("windlocation").offsetWidth,10)
       sdocWidth = document.body.clientWidth;
       sdocHeight = document.body.clientHeight;
       document.getElementById("windlocation").style.top = sdocHeight - sdivHeight + parseInt(document.body.scrollTop,10)
       document.getElementById("windlocation").style.left = sdocWidth - sdivWidth + parseInt(document.body.scrollLeft,10) -20
       }
       catch(e){}
}

function moveDiv()
{
       try
       {
       if(parseInt(document.getElementById("windlocation").style.top,10) <= (sdocHeight - sdivHeight + parseInt(document.body.scrollTop,10)))
       {
       window.clearInterval(sobjTimer)
       sobjTimer = window.setInterval("resizeDiv()",1)
       }
       sdivTop = parseInt(document.getElementById("windlocation").style.top,10)
       document.getElementById("windlocation").style.top = sdivTop - 1
       }
       catch(e){}
}
function closeDiv()
{
       document.getElementById('windlocation').style.visibility='hidden';
       if(sobjTimer) window.clearInterval(sobjTimer)
}