
//Disable right mouse click Script

var message="Sorry! Right clicking is not allowed here.";

///////////////////////////////////
function norightclickIE(){
	if (event.button==2){
		alert(message);
		return false;
	}
}

function norightclickNS(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}

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

document.oncontextmenu=new Function("alert(message);return false")


