<!--
function centerWin(theURL,winName,features,width,height) 
{ 
  var iMyWidth;
  var iMyHeight;
  var featureList;
  iMyWidth = window.screen.width/2 - width/2 //half the screen width minus half the new window width (plus 5 pixel borders).
  iMyHeight = (window.screen.height/2 - height/2) - 20 //half the screen height minus half the new window height (plus title and status bars).
  
  featureList = "toolbar=no,location=no,scrollbars=no,status=no,menubar=no,resizable=yes,height=" + height + ",width=" + width + ",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + "," + features
  //alert("centerWin()\nfeatureList: "+featureList)
  newWin = window.open(theURL,winName,featureList)
  return newWin
}
-->