// JavaScript Validation for PRO-LAB Partners Website  by: Louis Barletta 09/29/2004

function validate (  )
   {
   doit     = false;
   correct  = true ;

   if ( document . wmijoborders . jobnum . value == "" )
      {
      correct = false ;
      alert ( "Please enter the Job Number." )  ;
      document.wmijoborders.jobnum.focus();
      return false;
      }
  if ( document . wmijoborders . projectname . value == "" )
      {
      correct = false ;
      alert ( "Please enter the project name ." )  ;
      document.wmijoborders.projectname.focus();
      return false;
      }
  if ( document . wmijoborders . client . value == "" )
      {
      correct = false ;
      alert ( "Please enter the client name." )  ;
      document.wmijoborders.client.focus();
      return false;
      }
   
   return correct;
   }