function newWindow(mypage,myname,w,h) {
  if(screen.width){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  }else{winl = 0;wint =0;}
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += 'resizable=1,scrollbars=yes,status=0,toolbar=0,location=0,status=0,menubar=0';
  win = window.open(mypage,myname,settings);
  win.window.focus();
}

function newWindow00(mypage,myname,w,h) {
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=0'  + ',';
  settings += 'left=0' + ',';
  settings += 'resizable=1,scrollbars=no,status=0,toolbar=0,location=0,status=0,menubar=0';
  win = window.open(mypage,myname,settings);
  win.window.focus();
}