function page_img_ow(url, w, h) {

    // window.open("/gallery_ow.php?file="+file,"","toolbar=no,menubar=no,scrollbars=yes,status=yes,location=no");
    
    var centerWidth = (window.screen.width - w) / 2;
    var centerHeight = (window.screen.height - h) / 2;
    newWindow = window.open(url,"","w=" + w + ",h=" + h + ",toolbar=no,menubar=no,scrollbars=no,status=no,location=no");
    newWindow.moveTo(centerWidth, centerHeight);
    newWindow.blur();
    newWindow.focus();  

}
