function CambiarPwd(){
    bool = false; 
    if(document.getElementById('admpwd').value != document.getElementById('admpwd2').value) {
        bool = false;
        alert("Las contraseñas no coinciden");
        document.getElementById('admpwd2').focus();
    }
    else{
        bool = true;
    }        
    if(bool){
        document.getElementById('frmdatos').submit();
    }
}
function CambiarCategoria(id,pagina){
    location.href = pagina+".php?idcategoria="+id;
}
function MM_effectBlind(targetElement, duration, from, to, toggle)
{
    Spry.Effect.DoBlind(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
}
function Contacto(){
    bool = false; 
    if(document.getElementById('Nombre').value == '' || document.getElementById('Nombre').value == 'Introduzca su nombre y apellidos') {
        bool = false;
        alert('Nombre y apellidos obligatorios');
        document.getElementById('Nombre').focus();
    }
    else{
        bool = true;
    }
    if(bool){
        if(document.getElementById('Email').value == '' || document.getElementById('Email').value == 'Introduzca su email') {
            bool = false;
            alert('Email obligatorio');
            document.getElementById('Email').focus();
        }
        else{
            bool = true;
        }
    }
    if(bool){
        if(document.getElementById('Comentario').value == '' || document.getElementById('Comentario').value == 'Escriba su comentario') {
            bool = false;
            alert('Comentario obligatorio');
            document.getElementById('Comentario').focus();
        }
        else{
            bool = true;
        }
    } 
    if(bool){
        document.getElementById('frmdatos').submit();
    }   
}
