<!--
function NewWindowOpenScroll (url,name,width,height,resiz)
  {
  var options = '';
  var winl = (screen.width - width) / 2;
  var wint = (screen.height - height) / 2;

  options = 'scrollbars=yes,';
  options = options + 'width=' + width + ',';
  options = options + 'height=' + height + ',';
  options = options + 'top=' + wint + ',';
  options = options + 'left=' + winl + ',';
  options = options + 'resizable=' + resiz;

  popupWin = window.open (url, name, options);
  if (window.focus) {popupWin.focus()}
  }
  
  function popUp(URL) { // For the "Dream of Opportunity" conference
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=400,height=430');");
}
// -->