//
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-02A
TN_Widget.CreateTable([['Chris Isaak','Redding Civic Auditorium','Redding, CA','Wednesday','7/16/2025','7:30 PM','7120053','Chris-Isaak-7-16-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'],['Death Cab for Cutie','Redding Civic Auditorium','Redding, CA','Friday','7/25/2025','7:00 PM','7023093','Death-Cab-for-Cutie-7-25-2025'],['Yachtley Crew','Redding Civic Auditorium','Redding, CA','Thursday','8/14/2025','8:00 PM','7070046','Yachtley-Crew-8-14-2025'],['Slightly Stoopid','Redding Civic Auditorium','Redding, CA','Saturday','8/16/2025','7:00 PM','7194449','Slightly-Stoopid-8-16-2025'],['Jason Bonham's Led Zeppelin Evening','Redding Civic Auditorium','Redding, CA','Sunday','8/17/2025','7:30 PM','7182574','Jason-Bonham-s-Led-Zeppelin-Evening-8-17-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'],['Josh Turner','Redding Civic Auditorium','Redding, CA','Thursday','8/28/2025','7:30 PM','7008850','Josh-Turner-8-28-2025'],['Chevelle','Redding Civic Auditorium','Redding, CA','Sunday','9/28/2025','7:00 PM','7060362','Chevelle-9-28-2025'],['Chris Tomlin','Redding Civic Auditorium','Redding, CA','Thursday','10/23/2025','7:00 PM','7163318','Chris-Tomlin-10-23-2025'],['Golden Girls: The Laughs Continue','Redding Civic Auditorium','Redding, CA','Sunday','11/9/2025','5:00 PM','7194320','Golden-Girls--The-Laughs-Continue-11-9-2025'],['Nutcracker! Magical Christmas Ballet','Redding Civic Auditorium','Redding, CA','Wednesday','11/19/2025','7:00 PM','7066758','Nutcracker--Magical-Christmas-Ballet-11-19-2025'],['Jo Koy','Redding Civic Auditorium','Redding, CA','Sunday','11/30/2025','7:30 PM','7139312','Jo-Koy-11-30-2025'],['John Crist','Redding Civic Auditorium','Redding, CA','Sunday','12/7/2025','7:00 PM','7071718','John-Crist-12-7-2025'],['Theresa Caputo','Redding Civic Auditorium','Redding, CA','Sunday','1/11/2026','3:00 PM','7204030','Theresa-Caputo-1-11-2026']],'Redding Civic Auditorium','https://www.ticketnetwork.com/ticket/Redding-Civic-Auditorium-events.aspx');