<!-- Begin
// ----------------------------------
// ----------------------------------
// Stop the right-click from browsers
// ----------------------------------
// ----------------------------------
   function noright(e) {
      var vMessage = "Copyright 2002 CMKS (AUST) PTY LTD, All rights reserved.";
      return true;

      if (navigator.appName == 'Netscape' &&  (e.which == 3 || e.which == 2)) {
         alert(vMessage);
         return false;
      }
      else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
         alert(vMessage);
         return false;
      }

      return true;
   }

   if (document.layers) {
      window.captureEvents(Event.MOUSEDOWN);
      window.onmousedown=noright;
   }
   else {
      document.onmousedown=noright;
   }
// ----------------------------------
// ----------------------------------
//  End -->


<!-- Begin
// ----------------------------------
// ----------------------------------
// Validate Statistics
// ----------------------------------
// ----------------------------------
   function validatestats() {
      return true;
   }
// ----------------------------------
// ----------------------------------
//  End -->


<!-- Begin
// ----------------------------------
// ----------------------------------
// Validate User login
// ----------------------------------
// ----------------------------------
   function validateuser() {
      return true;
   }
// ----------------------------------
// ----------------------------------
//  End -->

<!-- Begin
// ----------------------------------
// ----------------------------------
// Validate Entrant update
// ----------------------------------
// ----------------------------------
   function validateentrant() {
      return validateentrant_maint();
   }
// ----------------------------------
// ----------------------------------
//  End -->

<!-- Begin
// ----------------------------------
// ----------------------------------
// Validate Entrant update
// ----------------------------------
// ----------------------------------
   function validateentrant_maint() {
      if (document.entrantform.CATEGORY_FK.value == ""){
         alert("Please enter the category of you photo.");
         return false;
      }
      if (document.entrantform.COUNTRY_FK.value == ""){
         alert("Please enter you country.");
         return false;
      }
      if (document.entrantform.ENTRANT_NOTE.value == ""){
         alert("Please enter comments.");
         return false;
      }
      return true;
   }
// ----------------------------------
// ----------------------------------
//  End -->


