
	/*
	
	Description:	All functions for protecting a page
	
	Revisions:		1.28.01 - JS - Authored	
		
	*/

    // This will disable the native functions of the right-click button
	// This does not stop right-clicking for Firefox.
	/*
    function right(e) {
        if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
            return false;
        else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
            window.alert("Source Protected");
            return false;
        }

        return true;

    }

    document.onmousedown=right;
    if (document.layers) window.captureEvents(Event.MOUSEDOWN);
    window.onmousedown=right;
*/


//The code below for disabling right-clicks has been tested and works on IE6 and Firefox 1.0.1

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Source Protected";

///////////////////////////////////
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");

