// JavaScript Document
function valida_fragua(){
    
	if(valida_nombre() && valida_correo() && valida_mensaje()){
		alert("Todo correcto");
		return true;
	}else{
	alert("Falta algun campo por rellenar o no esta debidamente cumplimentado.");

	return false;
	}
}
