//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.CreateTable([['Annie','Redding Civic Auditorium','Redding, CA','Wednesday','2/5/2025','7:00 PM','6709940','Annie-2-5-2025'],['Redding Bridal Show','Redding Civic Auditorium','Redding, CA','Sunday','2/23/2025','12:00 PM','6923929','Redding-Bridal-Show-2-23-2025'],['Omnium Circus','Redding Civic Auditorium','Redding, CA','Friday','3/21/2025','7:00 PM','6709948','Omnium-Circus-3-21-2025'],['Dancing with the Stars Live','Redding Civic Auditorium','Redding, CA','Saturday','3/22/2025','7:30 PM','6751954','Dancing-with-the-Stars-Live-3-22-2025'],['The Sleeping Beauty','Redding Civic Auditorium','Redding, CA','Thursday','5/1/2025','7:00 PM','6714726','The-Sleeping-Beauty-5-1-2025'],['Felipe Esparza','Redding Civic Auditorium','Redding, CA','Friday','5/9/2025','7:30 PM','6764142','Felipe-Esparza-5-9-2025'],['Alison Krauss and Union Station, Jerry Douglas & Willie Watson','Redding Civic Auditorium','Redding, CA','Saturday','7/19/2025','7:30 PM','6815215','Alison-Krauss-and-Union-Station--Jerry-Douglas---Willie-Watson-7-19-2025'],['Weird Al Yankovic & Puddles Pity Party','Redding Civic Auditorium','Redding, CA','Tuesday','8/26/2025','8:00 PM','6724186','Weird-Al-Yankovic---Puddles-Pity-Party-8-26-2025']],'Redding Civic Auditorium','https://www.ticketnetwork.com/ticket/Redding-Civic-Auditorium-events.aspx');