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