var message="לחיצה על הכפתור הימני בעכבר לא אפשרית במסך זה.";
function right(e) {
	if(navigator.appName == 'Netscape'){
		if (e.which == 3){
			alert (message);
			return false;
		}
	}else if(navigator.appName == 'Microsoft Internet Explorer'){
		if (event.button==2){
			alert (message);
			return false;
		}
	}
}
function context(){
	return false;//Net 6 and IE.
}

document.onmousedown=right;
document.oncontextmenu=context;

