<!--
var win = null;
function NewWindow(mypage,myname){
Wwidth=screen.width*.75
Hheight=screen.height*.65
LeftPosition = screen.width*.125
TopPosition = screen.height*.110
settings =
'height='+Hheight+',width='+Wwidth+',top='+TopPosition+',left='+LeftPosition+',menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes'
win = window.open(mypage,myname,settings)
}
 -->