

function newWindow(PrintWin) {
  leftPos = 10
  topPos = 10
  wdth = 700
  hgt = 500
  if (screen) {
    leftPos = (screen.width/2)-(wdth/2)
    topPos = (screen.height/2)-(hgt/2)
  }
  PrintMsgWindow = window.open(PrintWin,"msgWin","width="+wdth+",height="+hgt+",left="+leftPos+",top="+topPos+",menubar=yes,scrollbars=yes");
  PrintMsgWindow.focus();
}


