
//Disable right click script III- By Renigade (renigade@mediaone.net)
//Modified by Dreaming Digital

var message="Sorry this function is disabled.\nThe graphics and copy on this page are not Public\nDomain and are not available for download or use.";


function clickIE() {
	if (document.all) {
		alert(message);
		return false;
	}
}

function clickNS(e) {
	if (document.layers||(document.getElementById&&!document.all)) {
		if (e.which==2||e.which==3) {
			alert(message);
			return false;
		}
	}
}

if (!teaching_page) {
	if (document.layers) {
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=clickNS;
	}
	else if (ns6) {
		document.onmouseup=clickNS;
	    document.oncontextmenu=new Function("return false");
	}
	else {
		document.onmouseup=clickNS;
		document.oncontextmenu=clickIE;
	}
}
