  var newWindow;
  function openWindow(path, width, height, scroll)
  {
    if(!scroll) scroll = "no";
    newWindow = window.open(path, "myWindow", "scrollbars=" + scroll + ",width=" + width + ",height=" + height);
    if(self.focus) newWindow.window.focus();
  }
