//
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-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['BNP Paribas Open: Stadium 1 - Session 6','Indian Wells Tennis Garden - Stadium 1','Indian Wells, CA','Friday','3/6/2026','6:00 PM','7052412','BNP-Paribas-Open--Stadium-1---Session-6-3-6-2026'],['Rodney Crowell','Golden State Theatre','Monterey, CA','Friday','3/6/2026','7:00 PM','7474797','Rodney-Crowell-3-6-2026'],['Margo Price','Goldfield Trading Post - Roseville','Roseville, CA','Friday','3/6/2026','7:00 PM','7473580','Margo-Price-3-6-2026'],['Noel Paul Stookey','Cerritos Center','Cerritos, CA','Friday','3/6/2026','7:30 PM','7245198','Noel-Paul-Stookey-3-6-2026'],['The Strumbellas','Regent Theatre - CA','Los Angeles, CA','Friday','3/6/2026','8:00 PM','7351790','The-Strumbellas-3-6-2026'],['BNP Paribas Open: Stadium 1 - Session 7','Indian Wells Tennis Garden - Stadium 1','Indian Wells, CA','Saturday','3/7/2026','11:00 AM','7052413','BNP-Paribas-Open--Stadium-1---Session-7-3-7-2026'],['BNP Paribas Open: Stadium 1 - Session 8','Indian Wells Tennis Garden - Stadium 1','Indian Wells, CA','Saturday','3/7/2026','6:00 PM','7052414','BNP-Paribas-Open--Stadium-1---Session-8-3-7-2026'],['Logan Michael','The Parish At House Of Blues - Anaheim','Anaheim, CA','Saturday','3/7/2026','7:00 PM','7600870','Logan-Michael-3-7-2026'],['Margo Price','The Fillmore - San Francisco','San Francisco, CA','Saturday','3/7/2026','8:00 PM','7472922','Margo-Price-3-7-2026'],['The White Buffalo','Mystic Theatre','Petaluma, CA','Saturday','3/7/2026','8:00 PM','7514429','The-White-Buffalo-3-7-2026']],'California Country Show','https://www.ticketnetwork.com');