//
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([['10th Annual Country Christmas: Daniel Bonte and the Bona Fide','House Of Blues - Anaheim','Anaheim, CA','Wednesday','12/17/2025','7:00 PM','7511296','10th-Annual-Country-Christmas--Daniel-Bonte-and-the-Bona-Fide-12-17-2025'],['Country Line Dance','HopMonk Tavern - Novato','Novato, CA','Thursday','12/18/2025','6:00 PM','7582808','Country-Line-Dance-12-18-2025'],['Jenner Fox Band','Harlow's Night Club','Sacramento, CA','Thursday','12/18/2025','7:30 PM','7565874','Jenner-Fox-Band-12-18-2025'],['Dave Fenley','Red Stage Fontana','Fontana, CA','Thursday','12/18/2025','8:00 PM','7488207','Dave-Fenley-12-18-2025'],['Jenner Fox Band','Felton Music Hall','Felton, CA','Friday','12/19/2025','7:30 PM','7494612','Jenner-Fox-Band-12-19-2025'],['The Dustbowl Revival','Pappy & Harriet's Pioneertown Palace - Indoor Stage','Pioneertown, CA','Friday','12/19/2025','9:30 PM','7339353','The-Dustbowl-Revival-12-19-2025'],['Paul Cauthen','Belly Up Tavern','Solana Beach, CA','Sunday','12/28/2025','8:00 PM','7528609','Paul-Cauthen-12-28-2025'],['Paul Cauthen','The Independent','San Francisco, CA','Tuesday','12/30/2025','8:00 PM','7520585','Paul-Cauthen-12-30-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']],'California Country Show','https://www.ticketnetwork.com');