function winLaunch(url,features) {
  browserName = navigator.appName;
  browserVer = parseInt(navigator.appVersion);
  
  //url is the absolute path of the page, ie http://www.something.com/something.htm
  //features looks something like this: 
  //'width=612,height=325,left=50,top=50'
  
  if ((browserName == "Netscape" && browserVer >= 3))         {
    itsWindow = window.open(url,'Window',features);
    itsWindow.focus();
  }
  else {
    itsWindow = window.open(url,'Window',features);
    itsWindow.focus();
 }
}

self.name = "main"; // names current window as "main"

