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