// Tim McAdoo - 5/5/2000
// This will process pop-up windows
function popUp (href, title, width, height)
  // 1. href is the URL to open
  // 2. title is the name of the window (no spaces!)
  // 3. width & height are dimensions
  // assume no toolbar
  {  
    window.open (href, title, "menubar=yes,toolbar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
  }  

