// JavaScript Document
function valida(){
	str=document.formu.nombre.value;
    str = str.replace(/^\s*|\s*$/g,"");
    if(str==""){
		alert("Introduce nombre");
		document.formu.nombre.focus();
		return false
	}
	str=document.formu.comentario.value;
	str = str.replace(/^\s*|\s*$/g,"");
	 if(str==""){
		alert("Introduce comentario");
		document.formu.comentario.focus();
		return false
	}
	document.formu.submit();
}