function validar(theForm){
   if (theForm.mail.value == "")
  {
    alert("Escriba su direccion de correo electronico..");
    theForm.mail.focus();
    return;
  }
  var string = theForm.mail.value;

  if (string.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
  {

  }
  else
  {
    alert("Escriba una direccion de correo electronico correcta");
    theForm.mail.focus();
    return;
  }

  
   if (theForm.nom.value == "")
  {
    alert("Escriba su Nombre");
    theForm.nom.focus();
    return;
  }
    
  
   if (theForm.com.value == "")
  {
    alert("Se olvida de escribir el texto de duda o comentario");
    theForm.com.focus();
    return;
  }
 
	theForm.submit();		
}

function vaciar() {
document.FrmSuggest.mail.value=""
document.FrmSuggest.nom.value=""
document.FrmSuggest.com.value=""


}