/* -----------------------------------------------	
	'@FILENAME: 
	'@DESCRIPTION: Click Handling code for myOnlineBible
	'@Author Vincent J. Coppola Jr.
	'@STARTCOPYRIGHT
	'The contents of this file is protected under the United States
	'copyright laws as an unpublished work, and is confidential and proprietary to
	'CoppolaMyer Technical.  Its use or disclosure in whole or in part without the
	'expressed written permission of CoppolaMyer Technical, Incorporated is expressly prohibited.
	'
	'(c) Copyright 2004 by CoppolaMyer Technical.  All rights reserved.
	'@ENDCOPYRIGHT
*/
var debug = 'off';	
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)) {
		if (debug == 'off'){
			alert("Not Available.");
			return false;		
		}else{
			return true;
		}

	}
		return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;

function noPicClick() {
		if (event.button==1) {
			alert('Still loading.......\n\nPatience becomes\nGod\'s children.');
		}
}

function clickOK(){
}
