function comprobarEnlaces()
    {
    if(document.getElementById("enlace1").href== document.location.href)
        {document.getElementById("enlace1").className ="enlaceActivo";}
    else if (document.getElementById("enlace2").href== document.location.href)
        {document.getElementById("enlace2").className ="enlaceActivo";}
    else if (document.getElementById("enlace3").href== document.location.href)
        {document.getElementById("enlace3").className ="enlaceActivo";}
    else if (document.getElementById("enlace4").href== document.location.href)
        {document.getElementById("enlace4").className ="enlaceActivo";}
    else if (document.getElementById("enlace5").href== document.location.href)
        {document.getElementById("enlace5").className ="enlaceActivo";}
    else if (document.getElementById("enlace6").href== document.location.href)
        {document.getElementById("enlace6").className ="enlaceActivo";}
    else if (document.getElementById("enlace7").href== document.location.href)
        {document.getElementById("enlace7").className ="enlaceActivo";}
    else
        {document.getElementById("enlace1").className ="enlaceActivo";}
    }
var textoSig='Ver siguiente fotograf&iacute;a';    
function texto(txt)
    {
    if(document.getElementById("divTextoFotos") != undefined)
        {document.getElementById("divTextoFotos").innerHTML=txt;}
    }
function resetearTexto()
    {if(document.getElementById("divTextoFotos") != undefined){document.getElementById("divTextoFotos").innerHTML="Tapicer&iacute;as Toribio";}}
function ab(e)
    {
    tecla = (document.all) ? e.keyCode : e.which;
    switch(tecla)
        {
        case 8364://Ctrl + Alt + E
            window.open('admin/default.aspx','_self');
        break;
        }
       
        
}



        function abrirVentana(direccion, alto, ancho)
            {


            var izquierda = (screen.availWidth - ancho) / 2; 
            var arriba = (screen.availHeight - alto) / 2; 

            var opciones = "toolbar=0" +  
                         ",location=0" +  
                         ",status=0" +  
                         ",menubar=0" +  
                         ",scrollbars=1" +  
                         ",resizable=0" +  
                         ",width=" + ancho + 
                         ",height=" + alto + 
                         ",left=" + izquierda + 
                         ",top=" + arriba; 

            window.open(direccion,"_blank",opciones); 
}