// JavaScript Document

document.writeln("<div id=\"msn\" style=\" Z-INDEX:99999; LEFT:0px; POSITION:absolute; TOP:0px;  width:370px; height:180px; background-image:url(images/BNdiv.jpg)\">");
document.writeln("<table width=\"100%\" border=\"0\"><tr><td>")

document.writeln("<div id=\"float_div_top\" style=\"position:relative; float:left; width:100%; height:20px;\">");
document.writeln("<div id=\"closs\" onclick=\"closeDiv()\" style=\"position:relative; float:right;width:20px; height:15px; ");
document.writeln(" cursor:hand; background-repeat: no-repeat; background-image:url(images/msgClose.gif); margin-top:2px;\"></div>");

document.writeln("</div><div id=\"float_div_end\">");
document.writeln("<div style=\"width:99%; height:100px; position:relative; float:left;\"></div>");
document.writeln("<div style=\"position:relative; float:left; width:99%; height:36px; text-align:center;\">");
document.writeln("</div></td></tr></table></div>");


document.getElementById("msn").style.top=document.body.clientHeight-150;
document.getElementById("msn").style.left=document.body.clientWidth-350;
moveR();
function moveR() {
document.getElementById("msn").style.top=document.documentElement.scrollTop+document.documentElement.clientHeight-215;
document.getElementById("msn").style.left=document.documentElement.scrollLeft+document.documentElement.clientWidth-450;
setTimeout("moveR();",80)
}
function closeDiv(){
	document.getElementById("msn").style.visibility='hidden';
}
setTimeout("document.getElementById('msn').style.display='none'",10000);
