function form_enquete_Validator(theForm)
{

  var radioSelected = false;
  for (i = 0;  i < theForm.R_enquete.length;  i++)
  {
    if (theForm.R_enquete[i].checked)
        radioSelected = true;
  }
  if (!radioSelected)
  {
    alert("Seleccione una de las opciones antes de votar para.");
    return (false);
  }
  return (true);
}


function form_indicar_Validator(theForm)
{

  if (theForm.Nome.value == "")
  {
    alert("Teclee un valor por el campo \"Su nombre\".");
    theForm.Nome.focus();
    return (false);
  }

  if (theForm.Nome.value.length < 3)
  {
    alert("Teclee 3 carácteres por lo menos en el campo \"Su nombre\".");
    theForm.Nome.focus();
    return (false);
  }

  if (theForm.Mail.value == "")
  {
    alert("Teclee un valor por el campo \"Su e-mail\".");
    theForm.Mail.focus();
    return (false);
  }

  if (theForm.Mail.value.length < 6)
  {
    alert("Teclee 6 carácteres por lo menos en el campo \"Su e-mail\".");
    theForm.Mail.focus();
    return (false);
  }

  if (theForm.Destinatario.value == "")
  {
    alert("Teclee un valor por el campo \"Destinatario\".");
    theForm.Destinatario.focus();
    return (false);
  }

  if (theForm.Destinatario.value.length < 3)
  {
    alert("Teclee 3 carácteres por lo menos en el campo \"Destinatario\".");
    theForm.Destinatario.focus();
    return (false);
  }

  if (theForm.MDestinatario.value == "")
  {
    alert("Teclee un valor por el campo \"E-mail Destinatario\".");
    theForm.MDestinatario.focus();
    return (false);
  }

  if (theForm.MDestinatario.value.length < 6)
  {
    alert("Teclee 6 carácteres por lo menos en el campo \"E-mail Destinatario\".");
    theForm.MDestinatario.focus();
    return (false);
  }
  return (true);
}