// openwindow.js - Revision:  1.0 
// Opens a window
//
// Requires variables width, height
//

function OpenWindow(URL,name,width,height) {
  self.name = 'bbmain';
  window_id = window.open(URL,name, 'scrollbars=yes,width='+width+',height='+height+',resizable=yes,menubar=no');
//  if(window_id.focus) window_id.focus();
}