function abrirfoto(que, ancho, alto){ 

    var izquierda = (screen.availWidth - ancho) / 2; 
    var arriba = (screen.availHeight - alto) / 2; 

    var opciones = "toolbar=" + 0 + 
                 ",location=" + 0 + 
                 ",status=" + 0 + 
                 ",menubar=" + 0 + 
                 ",scrollbars=" + 0 + 
                 ",resizable=" + 0 + 
                 ",width=" + ancho + 
                 ",height=" + alto + 
                 ",left=" + izquierda + 
                 ",top=" + arriba; 

    var ventana = window.open("marco_foto.php?nombre="+que,"ventana",opciones); 

}                     

    function mano(el)
    {
        if(document.all)
            el.style.cursor='hand';
    }