/*--- ------------------------------------------------------------------------- ----
	
	File:		no_click.js
	Author:		Ben Nadel
	Desc:		This attempts to disable the right-click of the site.
				
	Sample Code:
		
				N/A
				
	Update History:
	
				XX/YY/ZZZZ - Ben Nadel
				Comment goes here....
	
----- --------------------------------------------------------------------//// ---*/

function trapclick(){
	if(document.images){
		for(i=0;i<document.images.length;i++) {
			document.images[i].onmousedown = right;
			document.images[i].onmouseup = right; 
		}
	}
}


function right(e) {
	var msg = "This function has been disabled.";

	if (navigator.appName == 'Netscape' && e.which == 3) {
		alert(msg);
	return false;
	}

	if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
		alert(msg);
	return false;
	}
	else return true;
}