﻿

//window.onload = function() {

window.document.onmousedown = function() {

	if (event.button == 2 || event.button == 3) {

		//alert("오른쪽 클릭시 본 쇼핑몰의 모든 사진은 저작권의 보호를 받습니다.");
		//return false;
	}
}

window.document.oncontextmenu = function() {

	if (event.button == 2 || event.button == 3) {
		//alert("오른쪽 클릭시 본 쇼핑몰의 모든 사진은 저작권의 보호를 받습니다.");
		//return false;
	}
	
}

//document.body.style.cursor = "url(http://mfiles.naver.net/6bbe5f8191cfa7113b5c/data11/2005/7/12/271/snowcat01.cur)";

//}


//function handleMouseDown(e)
//{
// if (navigator.appName == 'Netscape')
// { 
//  if(e.which == 3 || e.which == 2)
//  {
//   alert("오른쪽 버튼은 사용할 수 없습니다!");
//   return false;
//  }
// }
// else if (navigator.appName == 'Microsoft Internet Explorer')
// {
//  if(event.button == 2 || event.button == 3) 
//  {
//   alert("오른쪽 버튼은 사용할 수 없습니다!");
//   return false;
//  }
// }
//  
//  return true;
//}

//function handleKeyPress()
//{
// alert("키보드는 사용할 수 없습니다!");
//}

//document.onmousedown = handleMouseDown;
//document.onkeydown = handleKeyPress;
