      function player(stationID, relayID) {
        var path = "http://www.audiorealm.com/";
        playerwin = window.open(path + "player.config.html?page=listen&stationID=" +
                    stationID + "&relayID=" + relayID + "&srefID=1146", "_AR_player",
                    "location=no, status=no, menubar=no, scrollbars=no, " +
                    "resizeable=yes, height=300, width=468");
      }

      function stationinfo(stationID) {
        var path = "http://www.audiorealm.com/";
        infowin = window.open(path+"station.info.html?stationID=" +
                  stationID + "&srefID=1146", "_AR_station_info",
                  "location=no, status=no, menubar=no, scrollbars=yes, " +
                  "resizeable=no, height=400, width=400");
      }

      function newWindow(thePage) {
        var w = 550;
        var h = 300;
        var winl = (screen.width - w) / 2;
        var wint = (screen.height - h) / 2;
        winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable'
        win = window.open(thePage, 'newWindow', winprops)
        if (parseInt(navigator.appVersion) >= 4)
          win.window.focus();
      }
      function playingLite() {
        var w = 600;
        var h = 350;
        var winl = (screen.width - w) / 2;
        var wint = (screen.height - h) / 2;
        winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable'
        win = window.open('playing-lite.php', 'playingLite', winprops)
        if (parseInt(navigator.appVersion) >= 4)
          win.window.focus();
      }
      function limboLite() {
        var w = 600;
        var h = 350;
        var winl = (screen.width - w) / 2;
        var wint = (screen.height - h) / 2;
        winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable'
        win = window.open('user_limbo_lite.php', 'limboLite', winprops)
        if (parseInt(navigator.appVersion) >= 4)
          win.window.focus();
      }      
