<!-- Begin
window.onerror = null;
function errorTrap(msg, url, line) {
        return true;
}       
window.onerror=errorTrap;
window.defaultStatus = ' ';
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
	var warning;
warning =
		"       !!! Warning !!!\n" +
		"________________________________________________\n" +
		"\n" +
		" \n" +
		"\n" +
		"Any copying or reproducing of this material \n" +
		"withour prior consent or written permission would \n" +
		"be a direct violation of internet laws and liable\n" +
		"for prosecution. \n" +
		"________________________________________________\n";	
	
alert(warning);
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
for (var i=0; i<document.images.length; i++)
document.images[i].onmousedown=right;
for (var i=0; i<document.links.length; i++)
document.links[i].onmousedown=right;
// End -->