function right(e) {
	var aLert = "Sorry, but the picture you are trying to copy is strictly copyright.  Contact Writers International at wi.info@iinet.net.au for more information.";

	if (navigator.appName == 'Netscape' && e.which == 3) {
	alert(aLert);
	return false;
	}

	if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
	alert(aLert);
	return false;
	}
	else return true;
	}

	function falseClick() 
	  {
	  if(document.images)
	    {
	    for(i=0;i<document.images.length;i++)
	      {
	      document.images[i].onmousedown = right;
	      document.images[i].onmouseup = right;
	      }
	    }
	  }


