<!--
var wins=null;
function NewWindow(mypage,myname,wd,hg){
   LeftPosition=(screen.width)?(screen.width-wd)/2:100;
   TopPosition=(screen.height)?(screen.height-hg-40)/2:100;
   settings='height='+hg+',width='+wd+',top='+TopPosition+',left='+LeftPosition+'scrollbars=no,dependent=yes';
   wins=window.open(mypage,myname,settings);
   if(wins.focus){wins.focus();}};
//-->

