/**
 JavaScript No Right-Click
 Use as an include file in top.cfm
 */
<!--// 4.0+ browsers
//var noRightClickMsg="Copyright 2002, Bells International, Inc., All Rights Reserved.\n\nYou are allowed to use these pictures for your own personal use.\n\nYou are not allowed to commercially use this picture without the express written consent of Bells International, Inc. Violations of our copyrighted materials will be pursued to the maximum extent of the law.";
var noRightClickMsg="You probably meant to 'left click,' however, please be advised that it is a copyright violation to use this photo or graphic without the express written consent of Bells International, Inc.";

function noRightClick(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert(noRightClickMsg);
return false;
}
return true;
}

document.onmousedown=noRightClick;
document.onmouseup=noRightClick;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=noRightClick;
window.onmouseup=noRightClick;
// -->

