//Disable right mouse click Script
//By Maximus (maximus@nsimail.com)
//For full source code, visit http://www.dynamicdrive.com

var message="Sorry, this function has been disabled. You are accessing a copyrighted site. Please contact the Webmaster for additional information.";

///////////////////////////////////
function clickIE() {
    if (document.all) {
	alert(message);
	return false;
    }
}

function clickNS(e) {
    if (document.layers||(document.getElementById&&!document.all)) {
	if (e.which==2||e.which==3) {
	    alert(message);
	    return false;
	}
    }
}

// Make sure page is not opened directly, only through main page
    host=top.location.hostname;
    if (host != "") {
//	if (top.location == self.location) {
//	    alert("This page is designed to be assessed through our main web page.");
//	}
	if (document.layers) {
	    document.captureEvents(Event.MOUSEDOWN);
	    document.onmousedown=clickNS;
	    }
    	else {
	    document.onmouseup=clickNS;
	    document.oncontextmenu=clickIE;
	}
    }	
