function validar(frm){
	if (EsVacio(frm.nya.value)){alert('Introduzca el nombre.');return false;}
	if (!EsEmail(frm.email.value)){alert('Introduzca el email.');return false;}
	if (EsVacio(frm.telefono.value)){alert('Introduzca el teléfono.');return false;}
	if (!MinCaracteres(frm.telefono.value,9)){alert('Introduzca el teléfono.');return false;}
	//if (EsVacio(frm.telefono.value)){alert('Todos los campos son obligatorios.');return false;}
	if (EsVacio(frm.comentario.value)){alert('Introduzca los comentarios.');return false;}
	if (EsVacio(frm.strCAPTCHA.value)){alert('Introduzca el código tal y como lo ve.');return false;}
	
	
	return true;
}
