function giving_Validator(theForm)
{

  if (theForm.NameFirst.value == "")
  {
    alert("Please enter your First Name.");
    theForm.NameFirst.focus();
    return (false);
  }
  
  if (theForm.NameLast.value == "")
  {
    alert("Please enter your Last Name.");
    theForm.NameLast.focus();
    return (false);
  }

  if (theForm.CompanyAddress1.value == "")
  {
    alert("Please enter your Street Address.");
    theForm.CompanyAddress1.focus();
    return (false);
  }

  if (theForm.CompanyCity.value == "")
  {
    alert("Please enter your City.");
    theForm.CompanyCity.focus();
    return (false);
  }

  if (theForm.CompanyState.value == "")
  {
    alert("Please enter your State.");
    theForm.CompanyState.focus();
    return (false);
  }

  if (theForm.CompanyZip.value == "")
  {
    alert("Please enter your Zip.");
    theForm.CompanyZip.focus();
    return (false);
  }

  if (theForm.CompanyCountry.value == "")
  {
    alert("Please enter your Country.");
    theForm.CompanyCountry.focus();
    return (false);
  }
  
  if (theForm.CompanyDayPhone.value == "")
  {
    alert("Please enter your Phone Number.");
    theForm.CompanyDayPhone.focus();
    return (false);
  }

  if (theForm.PaymentNameFirst.value == "")
  {
    alert("Please enter your First Name.");
    theForm.PaymentNameFirst.focus();
    return (false);
  }
  
  if (theForm.PaymentNameLast.value == "")
  {
    alert("Please enter your Last Name.");
    theForm.PaymentNameLast.focus();
    return (false);
  }

  if (theForm.PaymentAddress1.value == "")
  {
    alert("Please enter your Street Address.");
    theForm.PaymentAddress1.focus();
    return (false);
  }

  if (theForm.PaymentCity.value == "")
  {
    alert("Please enter your City.");
    theForm.PaymentCity.focus();
    return (false);
  }

  if (theForm.PaymentState.value == "")
  {
    alert("Please enter your State.");
    theForm.PaymentState.focus();
    return (false);
  }

  if (theForm.PaymentZip.value == "")
  {
    alert("Please enter your Zip.");
    theForm.PaymentZip.focus();
    return (false);
  }
  
  return(true);
  }