// Copyright (c) 2003-2007 Mira Software, Inc. All rights reserved.

function OpenWindow(url, title, width, height, params)
  {
  var hwnd = null;
  x = (screen && screen.width)  ? (screen.width  - width)  / 2 : 100;
  y = (screen && screen.height) ? (screen.height - height) / 2 : 100;
  if (x < 0) x = 0;
  if (y < 0) y = 0;
  if (params == null)
    params = 'scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
  settings = 'width=' + width + ',height=' + height + ',top=' + y + ',left=' + x + ',' + params;
  hwnd = window.open(url, title, settings);
  if (hwnd) hwnd.focus();
  }

