
//2009.01.12 add
//¿À¸¥ÂÊ ¸¶¿ì½º ¹öÆ°½Ã º¹»ç ±ÝÁö
function disableselect(e){
return false
}
function reEnable(){
return true
}


// IE4+
document.onselectstart=new Function ("return false")
// NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}


window.attachEvent( "onload" , lockMouseRight  );
function lockMouseRight(){
 // ¸¶¿ì½º ¿À¸¥ÂÊ ¹öÆ° ¸·±â

 document.body.oncontextmenu = function (){ return false };
 

 // ÅØ½ºÆ® µå·¹±×·Î ¼±ÅÃÇÏ±â ¸·±â

 document.body.ondragstart = function (){ return false };
 document.body.onselectstart = function (){ return false };
}

//---------------------------------------
