// JavaScript Document
//½ºÅ©·ÑÀÌµ¿½Ã ¹è³Ê ÀÌ¹ÌÁöµµ °°ÀÌ ¿òÁ÷ÀÌ´Â ¼Ò½º
self.onError=null;
currentX = currentY = 0; 
whichIt = null; 
lastScrollX = 0; lastScrollY = 0;
NS = (document.layers) ? 1 : 0;
IE = (document.all) ? 1: 0;

<!-- STALKER CODE -->

function heartBeat() {
if(IE) { 
diffY = document.body.scrollTop; 
diffX = 0; 
}
if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; }
if(diffY != lastScrollY) {
percent = .1 * (diffY - lastScrollY);
if(percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
if(IE) document.all.floater.style.pixelTop += percent;
if(NS) document.floater.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.floater.style.pixelLeft += percent;
if(NS) document.floater.top += percent;
lastScrollY = lastScrollY + percent;
} 
} 
if(NS || IE) action = window.setInterval("heartBeat()",1);
//¿©±â±îÁö

//¸¶¿ì½º ¿ìÃøÅ° ¸·±â
<!--
function handleMouseDown(e)
{
        if (navigator.appName == 'Netscape')
        { 
                if(e.which == 3 || e.which == 2)
                {
                        alert("No copy allowed in this website !");
                        return false;
                }
        }
        else if (navigator.appName == 'Microsoft Internet Explorer')
        {
                if(event.button == 2 || event.button == 3) 
                {
                        alert("No copy allowed in this website !");
                        return false;
                }
        }
return true;
}

//Å°º¸µå ¸·±â
function handleKeyPress()
{
        alert("No copy allowed in this website !");
}
//document.onmousedown = handleMouseDown;
//document.onkeydown = handleKeyPress;
-->



