// JavaScript Document

var newWindow= null;
function openNewWindow(URL,winName,features){
  var xPos = (screen.width-900)/2;
  var yPos = (screen.height-600)/2-24;
  newWindow=window.open(URL,winName,features);
  newWindow.moveTo(xPos,yPos);
  newWindow.focus();
}



