<!-- Begin
function PopWindow(myref, titl, w, h, sb) {
var siwi = (screen.width - w) / 2;
var sihi = (screen.height - w) / 2;
winset = 'height='+h+',width='+w+',top='+sihi+',left='+siwi+',scrollbars='+sb
sesame = window.open(myref, titl, winset)
if (parseInt(navigator.appVersion) >= 4) { sesame.window.focus(); }
}
// End -->

