function validator_wc_spanish(theForm)
{

  if (theForm.name.value == "")
  {
    alert("Please enter a value for the \"Nombre\" field.");
    theForm.name.focus();
    return (false);
  }

  if (theForm.telephone.value == "")
  {
    alert("Please enter a value for the \"Número de teléfono\" field.");
    theForm.telephone.focus();
    return (false);
  }


  
  return (true);
}