function validate(theForm) {
   if (theForm.Name.value == '') {
      alert('Please provide your name.');
      theForm.Name.focus();
      return false;
   }
   if (theForm.billingAddress.value == '') {
      alert('Please provide the billing address.');
      theForm.billingAddress.focus();
      return false;
   }
    if (theForm.shipName.value == '') {
      alert('Please provide the name of the order recipiant.');
      theForm.shipName.focus();
      return false;
   }
    if (theForm.shipAddress.value == '') {
      alert('Please provide the shipping address.');
      theForm.shipAddress.focus();
      return false;
   }
    if (theForm.partNumber.value == '') {
      alert('Please provide the part number.');
      theForm.partNumber.focus();
      return false;
   }
    if (theForm.partDescription.value == '') {
      alert('Please provide the part description.');
      theForm.partDescription.focus();
      return false;
   }
   if (theForm.manufacturer.value == '') {
      alert('Please provide the part manufacturer.');
      theForm.manufacturer.focus();
      return false;
   }
    if (theForm.quantity.value == '') {
      alert('Please provide the quantity.');
      theForm.quantity.focus();
      return false;
   }
   if (theForm.email.value == '') {
      alert('Please enter your email address.');
      theForm.email.focus();
      return false;
   }
   if (theForm.vin.value == '') {
      alert("Please enter the last 6 digits of the vehicle's VIN number");
      theForm.vin.focus();
      return false;
   }
  
       
   return true;
 
}  


