/* ******************* */ /* Constructor & Init */ /* ******************* */ var StreamInformation; if (StreamInformation == undefined) { StreamInformation = function () { }; } StreamInformation.STREAMSTATUS = function (){ return 1==1?true:false; } StreamInformation.CURRENTLISTENERS = function (){ if (this.streamStatus == false){ return 0; } return "2"; } StreamInformation.PEAKLISTENERS = function (){ if (this.streamStatus == false){ return 0; } return "Unavailable"; } StreamInformation.MAXLISTENERS = function (){ if (this.streamStatus == false){ return 0; } return "375"; } StreamInformation.BITRATE = function (){ if (this.streamStatus == false){ return 0; } return "128"; } StreamInformation.SONGTITLE = function (){ if (this.streamStatus == false){ return 0; } return "Pastor David Soto - Atado Con Cadenas"; } StreamInformation.SERVERTITLE = function (){ if (this.streamStatus == false){ return 0; } return "Radio Vida"; } StreamInformation.SONGHISTORY = function(){ if (this.streamStatus == false){ return 0; } return new Array('Pastor David Soto - Atado Con Cadenas'); }