<!-- hide from older browsers
// Copyright© 2000-2004 The Gator Group, Inc.
//
// disables the right mouse click functionality
//
function click(e) 
{
  var msg="Sorry, the right-click function is disabled.";
  if(document.all) 
  {
    if(event.button == 2) 
    {
      alert(msg);
      return(false);
    }
  }
  if(document.layers) 
  {
    if(e.which == 3) 
    {
      alert(msg);
      return(false);
    }
  }
}
if(document.layers) 
{
  document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// end hide-->