// The user can not be able to click on right button of his mouse.



document.oncontextmenu=function(){return false};
if(document.layers) {
	window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown = function(e){
					if (e.target==document){
						if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2){
							return false;
						}else if( navigator.appVersion.indexOf("MSIE") == 1 && e.which == 3){
							return false;
						}
					}
				}
} else {
	document.onmousedown=function(e){
		  
		  if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2){
		      return false;
		  }else if ( (navigator.appVersion.indexOf("MSIE") == -1) && e.which == 3) {
		      return false;
		  }
	}
}
