<!--
function openNewWindow(URL,winName,features){
	  var xPos = (screen.width-360)/2;
	  var yPos = (screen.height-600)/2;
	  popUpWin=window.open(URL,winName,features);
	  popUpWin.moveTo(xPos,yPos);
	  popUpWin.focus();
}
//-->