//
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([['Paul Cauthen','Belly Up Tavern','Solana Beach, CA','Sunday','12/28/2025','8:00 PM','7528609','Paul-Cauthen-12-28-2025'],['New Year's Eve with Matt Axton & Badmoon','Bankhead Theater','Livermore, CA','Wednesday','12/31/2025','7:00 PM','7539557','New-Year-s-Eve-with-Matt-Axton---Badmoon-12-31-2025'],['6 Beats To Midnight','Gold Country Casino','Oroville, CA','Wednesday','12/31/2025','8:00 PM','7590419','6-Beats-To-Midnight-12-31-2025'],['Paul Cauthen','The Independent','San Francisco, CA','Wednesday','12/31/2025','9:00 PM','7523537','Paul-Cauthen-12-31-2025'],['The Hit Men of Country','Clark Center For The Performing Arts','Arroyo Grande, CA','Saturday','1/3/2026','2:00 PM','7349256','The-Hit-Men-of-Country-1-3-2026'],['The Hit Men of Country','Stage One at Harris Center for the Arts','Folsom, CA','Sunday','1/4/2026','2:00 PM','7316142','The-Hit-Men-of-Country-1-4-2026'],['100 Years of Hank Williams','Bankhead Theater','Livermore, CA','Sunday','1/4/2026','3:00 PM','7138369','100-Years-of-Hank-Williams-1-4-2026'],['Carmen el Faye','Soho Restaurant And Music Club','Santa Barbara, CA','Thursday','1/8/2026','7:30 PM','7640868','Carmen-el-Faye-1-8-2026'],['The Special Consensus','Sweetwater Music Hall','Mill Valley, CA','Thursday','1/8/2026','8:00 PM','7573047','The-Special-Consensus-1-8-2026'],['I Love The 80s To Death - Murder Mystery Dinner','Gold Country Casino','Oroville, CA','Friday','1/9/2026','6:00 PM','7590266','I-Love-The-80s-To-Death---Murder-Mystery-Dinner-1-9-2026']],'"California Country Show"','https://www.ticketnetwork.com');