<!--JavaScript File-->
<!--Hide from old browsers

<!--DETECT BROSWER TYPE-->
Nav4 = (document.layers) ? 1:0;
IE4 =(document.all) ? 1:0;
ver4 =(Nav4 || IE4) ? 1:0;

<!--SET STYLESHEET-->
if (document.layers) {
	document.write("<LINK href='stylesht1.css' rel='styleSheet' type='text/css'>");
	}
else {
	document.write("<LINK href='stylesht.css' rel='styleSheet' type='text/css'>");
	}

<!--DISABLE MOUSE RIGHT CLICK-->
var msg="The mouse right click has been disabled.";
function click(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(msg);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(msg);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

<!--PROTECT CONTENT http://www.web-source.net/javascript_protect_content.htm-->
var message="Copyright 2003 by PCDOC. WARNING ! All content contained within this site is protected by copyright laws. Unauthorized use of our material is strictly prohibited.";
function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			alert(message);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

//-->

