   function chkpartnum(thePart)
   {  
      if (thePart.length < 3)
      {  
         alert('Part Number bust be at least three characters long.');
         return false;
      }
      return true;
   }

