
var message="Copyright NCC+"; // Message for the alert box
// Don't edit below!
function click(e) {
if (document.all) {
if (event.button == 2) {
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;


function printThis(){
	if (!window.print){
		alert("You need a 4.x browser or better to use this print button!")
		return
	}
window.print()
}

document.oncontextmenu=new Function("event.returnValue=false; return false;")
document.onselectstart=new Function("event.returnValue=false; return false;")
document.onCopy=new Function("event.returnValue=false; return false;")
document.onPaste=new Function("event.returnValue=false; return false;")
document.ondragstart=new Function("event.returnValue=false; return false;")
document.onkeydown=new Function("event.returnValue=false; return false;")
document.onKeypress=new Function("event.returnValue=false; return false;")
document.onKeyup=new Function("event.returnValue=false; return false;")
document.onselect=new Function("event.returnValue=false; return false;")
document.ondragdrop=new Function("event.returnValue=false; return false;")
document.onmousedown=new Function("event.returnValue=false; return false;")


