//
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([['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','California Mid-state Fair Grounds','Paso Robles, CA','Tuesday','7/14/2026','7:30 PM','7668717','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-14-2026'],['Willie Nelson & Family','Mountain Winery','Saratoga, CA','Tuesday','7/14/2026','7:30 PM','7977042','Willie-Nelson---Family-7-14-2026'],['Maren Morris','Yaamava Theater at Yaamava Resort & Casino','Highland, CA','Tuesday','7/14/2026','8:00 PM','7811108','Maren-Morris-7-14-2026'],['Old Dominion','California Mid-state Fair Grounds','Paso Robles, CA','Wednesday','7/15/2026','7:00 PM','7794215','Old-Dominion-7-15-2026'],['Willie Nelson & Family','Mountain Winery','Saratoga, CA','Wednesday','7/15/2026','7:30 PM','7977043','Willie-Nelson---Family-7-15-2026'],['Stella Prince','Folsom Hotel Saloon','Folsom, CA','Thursday','7/16/2026','7:00 PM','7880123','Stella-Prince-7-16-2026'],['Steve Bardwil Band','Troubadour','West Hollywood, CA','Thursday','7/16/2026','7:30 PM','8061870','Steve-Bardwil-Band-7-16-2026'],['Westerly & Travis Hayes','Sweetwater Music Hall','Mill Valley, CA','Thursday','7/16/2026','8:00 PM','7727820','Westerly---Travis-Hayes-7-16-2026'],['Midland - Country Band','Dignity Health Theater','Bakersfield, CA','Thursday','7/16/2026','8:00 PM','7785598','Midland---Country-Band-7-16-2026'],['Sierra Hull','Session Room at HopMonk Tavern - Novato','Novato, CA','Friday','7/17/2026','6:00 PM','7874283','Sierra-Hull-7-17-2026']],'"California Country Show"','https://www.ticketnetwork.com');