function galeria() {
    if (document.form.destinatario.value == "galeria") {
        document.form.fichero.disabled = false;
	document.form.asunto_guardado.value = document.form.asunto.value;
	document.form.asunto.value = "Imagen para la galeria";
    } else {
        document.form.fichero.disabled = true;
	document.form.asunto.value =  document.form.asunto_guardado.value;
    }
}

function comprobar_contacto() {
    if (document.form.remitente.value == null) {
    	alert("Por favor, indica tu correo electronico. ¡Si no lo haces no podremos respondert!");
        return false;
    }
    if (document.form.remitente.value.indexOf(".") < 0) {
        alert("La direccion de correo indicada no es correcta");
        return false;
    }
    if (document.form.mensaje.value == null) {
    	alert("¡No nos puedes enviar un mensaje vaio");
        return false;
    }
    return true;
}

