//JavaScript File

/*
    Author: Codey Shriner
    Date:   January 24, 2008

    All content herin is the intellectual property of, and only of, the auther (Codey Shriner).
    No modifications may be made without the express written consent of said author.

    This script disables the right click context menu in order to provide added security.

    Copyright © 2007 - 2008 Codey Shriner
*/

<!--

var message="Contents protected by BrentCorriganInc.com";

///////////////////////////////////
function clickIE4(){
	if (event.button==2){
		alert(message);
		return false;
	}
}

function clickNS4(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}

if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
	document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false");

// -->