﻿// Archivo JScript

function MM_jumpMenu(targ,selObj,restore){ //v3.0
    eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
    if (restore) selObj.selectedIndex=0;
}//MM_jumpMenu
function cajaprov() {
    var p= document.getElementById("txtprovincia").value
    if(p=='Escribe aquí tu provincia')
        document.getElementById("txtprovincia").value="";
}//cajaprov
function cajamail () {
    var p= document.getElementById("txtmail").value
    if(p=='Escribe aquí tu correo electrónico')
        document.getElementById("txtmail").value="";
}//cajamail
function testcajas () {
    var m= document.getElementById("txtmail").value
    var p= document.getElementById("txtprovincia").value
    if (p=='') document.getElementById("txtprovincia").value="Escribe aquí tu provincia";
    if(m=='') document.getElementById("txtmail").value="Escribe aquí tu correo electrónico"
}//testcajas

//-------------------------------------------------------------------------------------------//

function MostrarOcultarCapa(capaID, mostrar) {
    if (document.layers) {
        document.layers[capaID].visibility = mostrar ? "show" : "hide";
    } else if (document.getElementById) {
        var obj = document.getElementById(capaID);
        obj.style.visibility = mostrar ? "visible" : "hidden";
    } else if(document.all) {
        document.all[capaID].style.visibility = mostrar ? "visible" : "hidden";
    }
}//MostrarOcultarCapa

//-------------------------------------------------------------------------------------------//

function loadHome() {
    //carga en orden

    //espera
    $("#espera").hide();

    //vuelo form
    $("#formscont").load('includes/vueloform.aspx', function() {
        iniciarOfertas();
    }).fadeIn("slow");

    //espera
    $("#espera").load("includes/espera.aspx")
}//loadHome

function enviarNews() { 
    // Para apuntarte al bolet?ín de noticias 
    if (checkcondiciones.checked==false) { 
        alert('Tienes que aceptar el aviso legal para continuar.'); 
    } else { 
        if ((txtmail.value=='')||(txtmail.value=='Escribe aquí tu correo electrónico')) { 
            alert('Debes introducir una dirección de email.'); 
        } else { 
            location.href='http://viajes.muchoviaje.com/viajes/registro/Default.aspx?email=' + txtmail.value; 
        }
    } 
}//enviarNews