<!-- ÀÌ¹ÌÁö ¸µÅ© Å×µÎ¸®¶óÀÎ ¾ø¾Ö±â
 function fSetLinksOnFocus() { 
    for (var iLink = 0; iLink < document.links.length; iLink++) { 
    if (document.links[iLink].blur) 
    document.links[iLink].onfocus = fLinkOnFocus; 
   } 
} 
 function fLinkOnFocus() { 
    this.blur(); 
}

 //-->

<!-- cha global link script
function moveglobal(g){
if (g!='') 
window.open(g);
}

//-->



<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->





/*
<!-- top½ºÅ©·Ñ ½ÃÀÛ-->
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);

<!-- top½ºÅ©·Ñ ³¡-->
*/