<!--

var isNS = (navigator.appName == "Netscape") ? 1 : 0;  
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);  

function mischandler()
{   return false; }  

function mousehandler(e)
{ 	
	var myevent = (isNS) ? e : event; 	
	var eventbutton = (isNS) ? myevent.which : myevent.button;    
	if((eventbutton==2)||(eventbutton==3)) return false;
} 
document.oncontextmenu = mischandler; 
document.onmousedown = mousehandler; 
document.onmouseup = mousehandler;

/*
function click(evt) 
{
 if (navigator.appName.indexOf("Microsoft") != -1)
 {
 	if (event.button==2) {
 		alert('All Images copyright protected. Please use the Contact form if you need to use an Image!');
 		return false
 	};
 };
 
 if (navigator.appName.indexOf("Netscape") != -1) {
 	if ( evt.which == 3 ) {
 		alert('All Images copyright protected. Please use the Contact form if you need to use an Image!');
		 return false
		 };
 };
};
 
if (navigator.appName.indexOf("Netscape") != -1) {
 	document.captureEvents( Event.MOUSEDOWN )
};

 document.onmousedown = click;
 */
-->