function vaciarInputNombre(){
	document.getElementById("nombre").value = "";
}

function vaciarInputEmail(){
	document.getElementById("email").value = "";
}

function vaciarInputTelefono(){
	document.getElementById("telefono").value = "";
}

function vaciarInputComentario(){
	document.getElementById("comentario").value = "";
}


