function checkCtrlIns(event) {
	if (event.ctrlKey==true && event.keyCode==86)	{
		return false;
	} else {
		return true;
	}
}

function browser(event) {
	if (event.button == 2)
		if (navigator.appName == 'Microsoft Internet Explorer') {
			clickIE();
		}
		if (navigator.appName == 'Netscape') { 
			clickNS(event)
		} else { clickNS(event) }


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


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

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

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

	document.oncontextmenu=new Function("return true");
}
