function launchAolPlayer(StationID, oneStat) {
    oString = '';
    if (oneStat != null && oneStat != "") oString = '&onestat=' + oneStat;
    if (StationID == null || StationID == "0") {
        StationID = '876';
    }
    var urlStr = 'http://player.radio.com/player/AOLPlayer.php?version=1.1.9780&station=' + StationID + oString;
    var oWindow = window.open(urlStr, "AOLPlayer");
    oWindow.focus();
}
