//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['SLO Sheriff's Rodeo: Easton Corbin','Paso Robles Event Center','Paso Robles, CA','Friday','5/9/2025','6:00 PM','6939502','SLO-Sheriff-s-Rodeo--Easton-Corbin-5-9-2025'],['Chris Young','The Fruit Yard Amphitheater','Modesto, CA','Friday','5/9/2025','7:30 PM','6961698','Chris-Young-5-9-2025'],['Ziggy Alberts','Ventura Music Hall','Ventura, CA','Friday','5/9/2025','8:00 PM','6968134','Ziggy-Alberts-5-9-2025'],['Los Lobos & Los Lonely Boys','Gold Country Casino','Oroville, CA','Friday','5/9/2025','8:00 PM','6941687','Los-Lobos---Los-Lonely-Boys-5-9-2025'],['yeEDC! Country x EDM','Time Nightclub - CA','Costa Mesa, CA','Friday','5/9/2025','10:00 PM','7069440','yeEDC--Country-x-EDM-5-9-2025'],['Ziggy Alberts','Humphreys Concerts By The Bay','San Diego, CA','Saturday','5/10/2025','7:30 PM','6968119','Ziggy-Alberts-5-10-2025'],['Straight Tequila Night - Tribute to 90s Country','Fremont Theater - CA','San Luis Obispo, CA','Saturday','5/10/2025','8:00 PM','7031166','Straight-Tequila-Night---Tribute-to-90s-Country-5-10-2025'],['Chris Young','Tachi Palace Hotel & Casino','Lemoore, CA','Saturday','5/10/2025','8:00 PM','7050658','Chris-Young-5-10-2025'],['The Weather Station','The Independent','San Francisco, CA','Saturday','5/10/2025','9:00 PM','6840403','The-Weather-Station-5-10-2025'],['Ellis Paul','HopMonk Tavern - Novato','Novato, CA','Sunday','5/11/2025','3:00 PM','7139871','Ellis-Paul-5-11-2025']],'California Country Show','https://www.ticketnetwork.com');