
date1 = "2011/02/22";
date2 = "2011/03/22";

var date3 = new Date();  // ÇöÀç³¯Â¥ °´Ã¼
var now   = new Date();  // ÇöÀç³¯Â¥ ±¸ÇÏ°í...
var begin = new Date();
var end   = new Date();

begin = new Date(date1);
end   = new Date(date2);

var text = "";

	text += "<div id=quickm style='position:absolute;top:194;'>";
	text += "	<script>Flash('/mycredit/service/img/flash/quick.swf','58','336')</script><br>";
	text += "	<div align=center>";
	text += "		<a href=#top><img src=/mycredit/service/img/renew/top.gif vspace=5 /></a>";
	text += "	</div>";
	
if (now >= begin && now <= end) {
	text += "	<div align=center>";
	text += "		<a href=/mycredit/eventNewSpring2011.do><img src=/mycredit/service/img/eventzone/201102/event_small_bn.gif width=58 height=130 /></a>";
	text += "	</div>";
}
	text += "</div>";
	document.write(text);

self.onError=null;
currentX = currentY = 0;
whichIt = null;
lastScrollX = 0; lastScrollY = 0;
NS = (document.layers) ? 1 : 0;
IE = (document.all) ? 1: 0;

var tmp1= tmp2= tmp3 =0;
tmp1 = document.body.clientHeight;

function heartBeat() {

	tmp2 = document.body.clientHeight;
	//document.all.topm.style.pixelTop = tmp2 + document.body.scrollTop - 25;
	if(tmp1 != tmp2)
	{
		tmp3 =  tmp2 - tmp1;
		tmp1 = tmp2;
		if(tmp3<0)
		{
		}
	}
	
	if(IE) {
		diffY = document.body.scrollTop;
		diffX = 0;
		}
	
	if(NS) {
		diffY = self.pageYOffset;
		diffX = self.pageXOffset;
		}
	
	if(diffY != lastScrollY) {
		percent = .5 * (diffY - lastScrollY);
		
		if(percent > 0)
			percent = Math.ceil(percent);
		else
			percent = Math.floor(percent);
		
		if(IE)
			document.all.quickm.style.pixelTop += percent;
		if(NS)
			document.quickm.top += percent;
			
			lastScrollY = lastScrollY + percent;
		}

	if(diffX != lastScrollX) {
		percent = .1 * (diffX - lastScrollX);
		
		if(percent > 0) 
			percent = Math.ceil(percent);
		else
			percent = Math.floor(percent);
		
		if(IE) document.all.quickm.style.pixelLeft += percent;
		if(NS) document.quickm.top += percent;
		lastScrollY = lastScrollY + percent;
	}
} 
if(NS || IE) action = window.setInterval("heartBeat()",10);
