
window.onload = function() { 
    try { interfaceLoad(); } catch(err) {}
}

function showPicture(src) {
    var x = 50;
    var y = 50;
    var w = 10; var h = 10;
    var win = window.open('/picture/?src='+src, '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();
}

