  <!--
    function ProtectMyPage ()
    {
      if (( window.event.button == 2 ) || ( window.event.button == 3 ))
      {
        alert ( "___________________________ \n"       +
                "                   \n"     +
                "         Copyright: 2003-2005 \n"     +
                "            All rights reserved \n" +
                "            \n" +
                "___________________________             \n");
        return ( false ) 
      }
      else
        return ( true ) ;
    }

    window.document.onmousedown = ProtectMyPage ;
  -->