function CambiarPwd(){
    bool = false; 
    if(document.getElementById('adm_pwd').value != document.getElementById('adm_pwd2').value) {
        bool = false;
        alert("Las contraseñas no coinciden");
        document.getElementById('adm_pwd2').focus();
    }
    else{
        bool = true;
    }        
    if(bool){
        document.getElementById('frmdatos').submit();
    }
}
function MostrarManual(){
    document.getElementById('manual').style.display="block";
    document.getElementById('auto').style.display="none";
}
function MostrarAuto(){
    document.getElementById('manual').style.display="none";
    document.getElementById('auto').style.display="block";
}
function MostrarSeleccion(){
    document.getElementById('seleccion').style.display="block";
}
function OcultarSeleccion(){
    document.getElementById('seleccion').style.display="none";
}

function Contacto(){
    bool = false; 
    if(document.getElementById('nombre').value == '' || document.getElementById('nombre').value == 'Nombre y apellidos') {
        bool = false;
        alert("Nombre obligatorio");
        document.getElementById('nombre').focus();
    }
    else{
        bool = true;
    }
    if(bool){
        if(document.getElementById('direcciono').value == '1'){
            if(document.getElementById('direccion').value == '' || document.getElementById('direccion').value == 'Dirección') {
                bool = false;
                alert("Dirección obligatoria");
                document.getElementById('direccion').focus();
            }
            else{
                bool = true;
            }
        }
    }
    if(bool){
        if(document.getElementById('localidado').value == '1'){
            if(document.getElementById('localidad').value == '' || document.getElementById('localidad').value == 'Localidad') {
                bool = false;
                alert("Localidad obligatoria");
                document.getElementById('localidad').focus();
            }
            else{
                bool = true;
            }
        }
    }
    if(bool){
        if(document.getElementById('provinciao').value == '1'){
            if(document.getElementById('provincia').value == '' || document.getElementById('provincia').value == 'Provincia') {
                bool = false;
                alert("Provincia obligatoria");
                document.getElementById('provincia').focus();
            }
            else{
                bool = true;
            }
        }
    }
    if(bool){
        if(document.getElementById('cpo').value == '1'){
            if(document.getElementById('cp').value == '' || document.getElementById('cp').value == 'Código postal') {
                bool = false;
                alert("Código Postal obligatorio");
                document.getElementById('cp').focus();
            }
            else{
                bool = true;
            }
        }
    }
    if(bool){
        if(document.getElementById('telefonoo').value == '1'){
            if(document.getElementById('telefono').value == '' || document.getElementById('telefono').value == 'Teléfono de contacto') {
                bool = false;
                alert("Teléfono obligatorio");
                document.getElementById('telefono').focus();
            }
            else{
                bool = true;
            }
        }
    }
    if(bool){
        if(document.getElementById('email').value == '' || document.getElementById('email').value == 'Correo electrónico') {
            bool = false;
            alert("Email obligatorio");
            document.getElementById('email').focus();
        }
        else{
            bool = true;
        }
    }
    if(bool){
        if(document.getElementById('comentario').value == '' || document.getElementById('comentario').value == 'Haga sus comentarios') {
            bool = false;
            alert("Comentario obligatorio");
            document.getElementById('comentario').focus();
        }
        else{
            bool = true;
        }
    }    
    if(bool){
        document.getElementById('frmdatos').submit();
    }
}
function Visitas(){
    bool = false; 
    if(document.getElementById('nombre').value == '' || document.getElementById('nombre').value == 'Introduce tu nombre') {
        bool = false;
        alert("Nombre obligatorio");
        document.getElementById('nombre').focus();
    }
    else{
        bool = true;
    }
    if(bool){
        if(document.getElementById('email').value == '' || document.getElementById('email').value == 'Introduce tu email') {
            bool = false;
            alert("Email obligatorio");
            document.getElementById('email').focus();
        }
        else{
            bool = true;
        }
    }
    if(bool){
        if(document.getElementById('comentario').value == '' || document.getElementById('comentario').value == 'Introduce tu comentario') {
            bool = false;
            alert("Comentario obligatorio");
            document.getElementById('comentario').focus();
        }
        else{
            bool = true;
        }
    }    
    if(bool){
        document.getElementById('frmdatos').submit();
    }
}
