function validateCardOrder(theForm)
{
  
  if (theForm.name.value == "")
  {
    alert("Please provide your Name.");
    theForm.name.focus();
    return (false);
  }
   if (theForm.address.value == "")
  {
    alert("Please provide your Address.");
    theForm.address.focus();
    return (false);
  }
  if (theForm.city.value == "")
  {
    alert("Please provide your City/Town.");
    theForm.city.focus();
    return (false);
  }
  if (theForm.provincestate.value == "" && (theForm.Country.value == "Canada" || theForm.Country.value == "United States"))
  {
    alert("Please provide your Province/State.");
    theForm.provincestate.focus();
    return (false);
  }
   if (theForm.zip_postal.value == "")
  {
    alert("Please provide your Postal Code/Zip.");
    theForm.zip_postal.focus();
    return (false);
  }  
  //return (true);
}
 