
function validarComentario(){
	
   var envio = document.getElementById("envio");
   var envioValue = envio.value;
   envio.disabled = true;
   envio.value="Enviando...";
  
   var sendForm = true;
   var msn = "Compruebe el formulario:\n\n";

  var valor = document.getElementById("comentario").value;
  if( valor == null || valor.length == 0 || /^\s+$/.test(valor) ) {
		msn += " - EL comentario es obligatorio\n";
		sendForm=false;
  }


  if(sendForm==true){
			
			if(confirm("Enviar ?")){
				return true;	
			}
			
  }


  if(sendForm==false){
	alert(msn);
	envio.disabled = false;
    envio.value= envioValue;
	return false;
  }
	
	
}
