//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Lost 80's Live: Big Country, The Vapors & Oingo Boingo','Greek Theatre - Los Angeles CA','Los Angeles, CA','Sunday','8/30/2026','6:00 PM','7775761','Lost-80-s-Live--Big-Country--The-Vapors---Oingo-Boingo-8-30-2026'],['Thee Sacred Souls','Santa Barbara Bowl','Santa Barbara, CA','Sunday','8/30/2026','6:00 PM','7989763','Thee-Sacred-Souls-8-30-2026'],['Royale Lynn','Moroccan Lounge','Los Angeles, CA','Tuesday','9/1/2026','6:30 PM','7940676','Royale-Lynn-9-1-2026'],['Blake Whiten','Troubadour','West Hollywood, CA','Wednesday','9/2/2026','7:00 PM','8144584','Blake-Whiten-9-2-2026'],['Sara Petite','Belly Up Tavern','Solana Beach, CA','Wednesday','9/2/2026','7:30 PM','7980987','Sara-Petite-9-2-2026'],['Tylor and The Train Robbers','Folsom Hotel Saloon','Folsom, CA','Thursday','9/3/2026','7:00 PM','8172564','Tylor-and-The-Train-Robbers-9-3-2026'],['JJ Smith and The Helm','Ivan'z House at Mozambique','Laguna Beach, CA','Thursday','9/3/2026','7:30 PM','8171251','JJ-Smith-and-The-Helm-9-3-2026'],['Reverend Peyton's Big Damn Band','Moe's Alley','Santa Cruz, CA','Thursday','9/3/2026','8:00 PM','8031890','Reverend-Peyton-s-Big-Damn-Band-9-3-2026'],['Linda Tillery & The East Bay Allstars','Freight & Salvage','Berkeley, CA','Thursday','9/3/2026','8:00 PM','8237210','Linda-Tillery---The-East-Bay-Allstars-9-3-2026'],['Niko Moon','Eastern Sierra Tri-County Fairgrounds','Bishop, CA','Friday','9/4/2026','6:00 PM','8145874','Niko-Moon-9-4-2026']],'California Country Show','https://www.ticketnetwork.com');