// JavaScript Document
function NewWindow(mypage,myname)
 {

  var w = screen.width/2;
  var h = screen.height/2;
  LeftPosition = (screen.width) ? ((screen.width-w)/2+200) : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=0';
  MM_openBrWindow(mypage,myname,settings)

 }