function Validator(theForm)
{

  if (theForm.suscrip_nombre.value == "")
  {
    alert("Please enter a value for the \"suscrip_nombre\" field.");
    theForm.suscrip_nombre.focus();
    return (false);
  }

  if (theForm.suscrip_nombre.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"suscrip_nombre\" field.");
    theForm.suscrip_nombre.focus();
    return (false);
  }

  if (theForm.suscrip_nombre.value.length > 25)
  {
    alert("Please enter at most 25 characters in the \"suscrip_nombre\" field.");
    theForm.suscrip_nombre.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ \t\r\n\f";
  var checkStr = theForm.suscrip_nombre.value;
  var allValid = true;
  var validGroups = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only letter and whitespace characters in the \"suscrip_nombre\" field.");
    theForm.suscrip_nombre.focus();
    return (false);
  }

  if (theForm.suscrip_apellidos.value == "")
  {
    alert("Please enter a value for the \"suscrip_apellidos\" field.");
    theForm.suscrip_apellidos.focus();
    return (false);
  }

  if (theForm.suscrip_apellidos.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"suscrip_apellidos\" field.");
    theForm.suscrip_apellidos.focus();
    return (false);
  }

  if (theForm.suscrip_apellidos.value.length > 30)
  {
    alert("Please enter at most 30 characters in the \"suscrip_apellidos\" field.");
    theForm.suscrip_apellidos.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ \t\r\n\f";
  var checkStr = theForm.suscrip_apellidos.value;
  var allValid = true;
  var validGroups = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only letter and whitespace characters in the \"suscrip_apellidos\" field.");
    theForm.suscrip_apellidos.focus();
    return (false);
  }

  if (theForm.suscrip_mail.value == "")
  {
    alert("Please enter a value for the \"suscrip_mail\" field.");
    theForm.suscrip_mail.focus();
    return (false);
  }

  if (theForm.suscrip_mail.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"suscrip_mail\" field.");
    theForm.suscrip_mail.focus();
    return (false);
  }

  if (theForm.suscrip_mail.value.length > 50)
  {
    alert("Please enter at most 50 characters in the \"suscrip_mail\" field.");
    theForm.suscrip_mail.focus();
    return (false);
  }
  return (true);
}
