
<!--

// ¸¶¿ì½º ¿À¸¥ÂÊ ¹öÆ° °ü·Ã

function clickIE4(){
    if (event.button==2){
        alert("¿À¸¥ÂÊ ¸¶¿ì½º´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.");
    return false;
    }
}

function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
    if (e.which==2||e.which==3){
        alert("¿À¸¥ÂÊ ¸¶¿ì½º´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.");
        return false;
        }
    }
}


if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
}


function disableselect(e){
   //return false ;  //FF¿¡¼­ ¸¶¿ì½º µå·¡±×¸¦ ¸·À¸¸é ÅØ½ºÆ®¹Ú½º Ä¿¼­ ¼±ÅÃÀÌ ¾ÈµÊ.
}

function reEnable(){
    return true ;
}

//document.onselectstart=new Function ("event.returnValue=false;return false");  //¸¶¿ì½º µå·¡±×´Â Çã¿ëÇÔ ÀÎ¼â½Ã ¼±ÅÃ¿µ¿ª¸¸ ÇÏ±â À§ÇØ¼­..



if (window.sidebar){
    document.onmousedown=disableselect
    document.onclick=reEnable
}


document.oncontextmenu=new Function("alert('¿À¸¥ÂÊ ¸¶¿ì½º´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.');return false")


function capturekey(e) {
	if (e == null) { // IE
      //var pressedKey = String.fromCharCode(event.keyCode).toLowerCase();
      if (event.keyCode == 17) {
	   	 alert ('CtrlÅ°´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.');
         event.cancelBubble = true;
         event.returnValue = false; 
      }
	  
      if (event.keyCode == 122) {
	   	 alert ('F11Å°´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.');
         event.keyCode = 0;
         event.cancelBubble = true;
         event.returnValue = false; 
      }
	} else { // ±âÅ¸
      if (e.which == 17) { 
		  alert ('CtrlÅ°´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.') ;
  		  return false;
	  }
      if (e.which == 122) { 
		  alert ('F11Å°´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.') ;
		  return false;
 
	   }
	}
} 

document.onkeydown = capturekey;


// --> 


