//
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-04A
TN_Widget.CreateTable([['SIC - Tribute to Slipknot','Granada Theater - Dallas','Dallas, TX','Saturday','7/5/2025','8:00 PM','7139539','SIC---Tribute-to-Slipknot-7-5-2025'],['Subliminal Verses - Tribute To Slipknot','Capitol Arts Center','Bowling Green, KY','Friday','7/11/2025','8:00 PM','7005104','Subliminal-Verses---Tribute-To-Slipknot-7-11-2025'],['Subliminal Verses - Tribute To Slipknot','Manchester Music Hall','Lexington, KY','Saturday','7/12/2025','7:30 PM','6987330','Subliminal-Verses---Tribute-To-Slipknot-7-12-2025'],['Inkcarceration Music and Tattoo Festival: Falling In Reverse, Slipknot & Five Finger Death Punch - 3 Day Pass','Ohio State Reformatory','Mansfield, OH','Friday','7/18/2025','TBD','6725734','Inkcarceration-Music-and-Tattoo-Festival--Falling-In-Reverse--Slipknot---Five-Finger-Death-Punch---3-Day-Pass-7-18-2025'],['Inkcarceration Music and Tattoo Festival: Slipknot, Marilyn Manson & Slaughter To Prevail - Saturday','Ohio State Reformatory','Mansfield, OH','Saturday','7/19/2025','11:00 AM','6701103','Inkcarceration-Music-and-Tattoo-Festival--Slipknot--Marilyn-Manson---Slaughter-To-Prevail---Saturday-7-19-2025'],['Subliminal Verses - Tribute To Slipknot','Hobart Art Theater','Hobart, IN','Saturday','10/11/2025','6:00 PM','6995409','Subliminal-Verses---Tribute-To-Slipknot-10-11-2025'],['Subliminal Verses - Tribute To Slipknot','The King of Clubs - Columbus','Columbus, OH','Saturday','12/6/2025','6:30 PM','7189787','Subliminal-Verses---Tribute-To-Slipknot-12-6-2025']],'Slipknot','http://www.ticketnetwork.com/ticket/Slipknot-events.aspx');