<!-- Begin
function Window(page, win, w, h, scroll) {
var left = (screen.width - w) / 2;
var top = (screen.height - h) / 2;
properties = 'height='+h+',width='+w+',top='+top+',left='+left+',scrollbars='+scroll+',resizable'
win = window.open(page, win, properties)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->
