window.onload = function() {
    if (typeof(interfaceLoad)=='function') { 
        interfaceLoad();
    }
}

function showPicture(id) {
        var x = 50;
        var y = 50;
        var w = 100; var h = 100;
        var win = window.open('/picture/?id='+id, 'IMAGE_WINDOW', 'dependent=yes, disrectories=no, innerWidth='+w+', innerHeight='+h+', width='+w+', height='+h+', location=no, menubar=no, resizable=no, screenX='+x+', screenY='+y+', scrollbars=no, titlebar=no, toolbar=no');
        win.focus();
}

