
<!--
function OpenPopup(mypage, myname, w, h, scroll) {
var w_lft = (screen.width - w) / 2;
var w_top = (screen.height - h) / 2;
winprops ='height='+h+',width='+w+',top='+w_top+',left='+w_lft+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//-->
