/* Code copyright 2001 http://www.custompro.com, all rights reserved
   Function to watch for catch 'Right Mouse Clicks' and
	stop them, displaying a message instead. Designed to 
	stop easy looting of images and code.
*/
function right(e) {
var message = "Please enjoy the pictures on the website.";
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
alert(message);
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
alert(message);
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

