function NewWindow(mypage, w, h, title) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h - 100) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable';
page = '/pic.php?title='+title+'&pic='+mypage;
win = window.open(page, '', winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}