
  
    var remoteWin = null;
    this.parent.name = 'main';
    var myBrowser = navigator.appVersion;

    
    function makeNewWindow(URL, width, height) {
      if (myBrowser.indexOf('X11') == 5) {
        remoteWin = window.open('','Toolbar','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + width + ',height=' + height + '');
      }
      else if (myBrowser.indexOf('Mac') == 5)
      {
        remoteWin = window.open('','Toolbar','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + width + ',height=' + height + '');
      }
      else
      {
        remoteWin = window.open('','Toolbar','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + width + ',height=' + height + '');
      }
      remoteWin.location = URL;
    }
    
    


