//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://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[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ 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([['Rock Fest Chippewa Valley: Gojira, Limp Bizkit, & The Offspring - 3 Day Pass','Chippewa Valley Festival Grounds','Cadott, WI','Thursday','7/16/2026','TBD','7560961','Rock-Fest-Chippewa-Valley--Gojira--Limp-Bizkit----The-Offspring---3-Day-Pass-7-16-2026'],['Rock Fest Chippewa Valley: The Offspring, Halestrom, & The Petty Reckless - Saturday','Chippewa Valley Festival Grounds','Cadott, WI','Saturday','7/18/2026','11:00 AM','7679717','Rock-Fest-Chippewa-Valley--The-Offspring--Halestrom----The-Petty-Reckless---Saturday-7-18-2026'],['CallHome Music Festival: The Offspring, Gob, & Sumo Cyco - Saturday','Lions Park - ON','Brantford, Canada','Saturday','7/25/2026','12:00 PM','7764584','CallHome-Music-Festival--The-Offspring--Gob----Sumo-Cyco---Saturday-7-25-2026'],['The Offspring','Le Theatre Capitole','Quebec, Canada','Monday','8/3/2026','8:00 PM','7983005','The-Offspring-8-3-2026'],['The Offspring','MTelus','Montreal, Canada','Wednesday','8/5/2026','8:00 PM','7978053','The-Offspring-8-5-2026'],['The Offspring','Aeroport de Saint-Jean-Sur-Richelieu','Saint-jean-sur-richelieu, Canada','Saturday','8/8/2026','3:00 PM','7983006','The-Offspring-8-8-2026'],['Aftershock Festival: My Chemical Romance, Sublime, The Offspring & The Pretty Reckless - Thursday','Discovery Park','Sacramento, CA','Thursday','10/1/2026','11:00 AM','7767890','Aftershock-Festival--My-Chemical-Romance--Sublime--The-Offspring---The-Pretty-Reckless---Thursday-10-1-2026'],['Mission Bayfest: Rebelution, Kolohe Kai & The Offspring - 3 Day Pass','Mariner's Point Park','San Diego, CA','Friday','10/16/2026','TBD','7825002','Mission-Bayfest--Rebelution--Kolohe-Kai---The-Offspring---3-Day-Pass-10-16-2026'],['Mission Bayfest: The Offspring - Sunday','Mariner's Point Park','San Diego, CA','Sunday','10/18/2026','12:00 PM','7825008','Mission-Bayfest--The-Offspring---Sunday-10-18-2026']],'The Offspring','http://www.ticketnetwork.com/ticket/The-Offspring-events.aspx');