function click(e)
{
  var graphicmessage="Sorry, No Copying of Graphics allowed on this Website!";
  if (document.all)
  {
    if (event.button == 2)
    {
      alert(graphicmessage);
      return false;
    }
  }

  if (document.layers)
  {
    if (e.which == 3)
      {
        alert(graphicmessage);
        return false;
      }
  }


  if (document.layers)
  {
    document.captureEvents(Event.MOUSEDOWN);
  }
  document.onmousedown=click;
}
