<!--
  var win = null;
  function newWindow(theURL,w,h,resizes,scroll){
    LeftPosition=(screen.width)?(screen.width-w)/2:0;
    TopPosition=(screen.height)?(screen.height-h)/2:0;
    features='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',resizable='+resizes+',scrollbars='+scroll+'';
    win=window.open(theURL,'',features)
}
//-->
