// Begin hiding from old browsers

/*******************************************************
* Original JavaScript by Kipp B. Smith © 1999 (6EQUJ5)
*   <http://www.kipp.smith.net/>  <kipp@smith.net>
* License is granted if entire original credits remain.
* Please contact author regarding use of this code. ;)
********************************************************/
/*
function InitSecurity()
{
	document.onkeydown = CheckKeys;
	document.onmousedown=click;

	if (document.layers) {
		document.captureEvents(Event.MOUSEDOWN);
	}

}

function noMax(width, height){
	window.resizeTo(width, height)
}


function CheckKeys(){
    var key = event.keyCode, ctrl=event.ctrlKey;

    //if ((key==80 || key==112 || key==110 || key==78) && ctrl){ // Ctrl+P Ctr+p ctrl+n ctrl+N
    if ((key==80 || key==112 ) && ctrl){ // Ctrl+P Ctr+p 
	    // Disable
        event.cancelBubble = true;
        event.keyCode = 0;
        return false;
    }
}

Disable right mouse click Script (By Crash @ http://walk.to/crash)
Submitted to and permission granted to Dynamicdrive.com to feature script in it's archive
For full source code to this script and 100's more, visit 
http://dynamicdrive.com

function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			alert("This function has been disabled.");
			return false;
		}
	}

	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}
*/

