
// This section disables right click in Netscape and IE 
function right(evt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
	if (evt.which >= 2){
		alert("Copyright Simon Mossman. Any unauthorised use, copying or mirroring is prohibited.");
		return false;
	}
}
else
if (event.button>=2)
	alert("Copyright Simon Mossman. Any unauthorised use, copying or mirroring is prohibited.");
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown=right;
// End right-click section
