<!--
//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu = function(){return false}

//Other Usefull Stuff ...
function openPlainWindow (url,w,h) {	
	var X = 0;
	var Y = 0;
	if (screen.availWidth) {
		X = (screen.availWidth / 2) - (w / 2) - 5;
		Y = (screen.availHeight / 2) - (h / 2);
	}
	popupWindow = window.open(url, 'popUp', 'left=' + X + 
		'screenX=' + X + 'screenY=' + Y + ',top=' + Y + 
		',toolbar=no, scrollbars=no, resizable=no, directories=no, location=no, status=no' + 
		',height=' + h + ',width=' + w);
	popupWindow.focus();
}




