function TalkShowItem( show_id, show_name, station_id, station_name, url_code, epoch_start_time, duration_minutes, genre, city, state, reliability, speed, rating )
{
this.show_id = show_id;
this.show_name = show_name;
this.station_name = station_name;
this.station_id = station_id;
this.url_code = url_code;
this.epoch_start_time = epoch_start_time;
this.duration_minutes = duration_minutes;
this.genre = genre;
this.city = city;
this.state = state;
this.reliability = reliability;
this.speed = speed;
this.rating = rating;
}
function StationItem( id, title, genre, city, state, country, country_code, reliability, speed, rating, url_code )
{
this.id = id;
this.title = title;
this.genre = genre;
this.city = city;
this.state = state;
this.country = country;
this.country_code = country_code;
this.reliability = reliability;
this.speed = speed;
this.rating = rating;
this.url_code = url_code;
}
function MonitoredItem ( id, plays_per_day, url_code )
{
this.id = id;
this.plays_per_day = plays_per_day;
this.url_code = url_code;
}
var free = false;
var onlater = false;
var host = "";
var monitored_ids = "";
var plays_per_day = "";
var livenow_data = new Array();
var featured_data = new Array();
monitored_ids = "";
plays_per_day = "";
livenow_data[livenow_data.length] = new TalkShowItem( "#show_content_object_id#",
"#show_tl_title#",
"#station_content_object_id#",
"#station_name#",
"#url_code#",
"#epoch_start_time#",
"#duration_minutes#",
trim("#display_genre#"),
trim("#tl_city_name#"),
trim("#tl_state_province#"),
"#rating#", "#bitrate#",
"#audio_quality#" );
host = "#host_name#";
onlater = true;
host = "#host_name#";
#tl_title#
featured_data[featured_data.length] = new StationItem("#content_item_code#",
"",
trim("#display_genre#")trim(""),
trim("#tl_city_name#"),
trim("#tl_state_province#"),
trim("#tl_country_name#"),
"#tl_country_code#",
"#rating#",
"#bitrate_name#",
"#audio_quality#",
"#url_code#" );
free = true;
total_results = "";