<!--
var win = null;
function newWin(mypage,myname,w,h,scroll){
leftPos = (screen.width) ? (screen.width-w)/2 : 0;
topPos = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+topPos+',left='+leftPos+',scrollbars='+scroll+''
win = window.open(mypage,myname,settings)
win.focus();
}
// -->