/* Code copyright 2001 http://www.custompro.com, all rights reserved
   Companion code to watch for catch 'Right Mouse Clicks' and
	stop them, displaying a message instead. Designed to 
	stop easy looting of images and code.
*/
if (navigator.appName == 'Netscape'){

// to prevent right click on images include:
for (var i=0; i<document.images.length; i++) document.images[i].onmousedown=right;

// to prevent right click on links include:
for (var i=0; i<document.links.length; i++) document.links[i].onmousedown=right;
}

