//document.writeln("<a href=\"http://en.onccc.com/knitting_fair/index.html\"><div id=\"msn\" style=\"background:url(images/knitting.png) no-repeat;width:330px;height:280px;POSITION:absolute; TOP:0px;Z-INDEX:99999; LEFT:0px;CURSOR:pointer;\"></a>");
//document.writeln("<div style=\"float:right;margin:5px 8px; !important;margin:5px;\"><a style=\"CURSOR:pointer\" onclick=\"closeDiv()\" title=\"close\"\><img src=\"images/banne_close.jpg\" border=\"0\"/></a></div>");
//document.writeln("</div>");
var bWidth=parseInt(document.documentElement.clientWidth);
var bHeight=parseInt(document.documentElement.clientHeight);
lastScrollY=0;
document.getElementById('msn').style.top=bHeight-280;
document.getElementById('msn').style.left=bWidth-354;
function heartBeat(){ 
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
    diffY = document.documentElement.scrollTop;
else if (document.body)
    diffY = document.body.scrollTop
else
    {/*Netscape stuff*/}
    
//alert(diffY);
percent=.1*(diffY-lastScrollY); 
if(percent>0)percent=Math.ceil(percent); 
else percent=Math.floor(percent); 
document.getElementById("msn").style.top=parseInt(document.getElementById("msn").style.top)+percent+"px";

lastScrollY=lastScrollY+percent; 
//alert(lastScrollY);
}
window.setInterval("heartBeat()",1);
function closeDiv(){
	document.getElementById('msn').style.visibility='hidden';
}

