//
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([['SIC - Tribute to Slipknot','Come and Take It Live','Austin, TX','Friday','5/30/2025','6:00 PM','7012003','SIC---Tribute-to-Slipknot-5-30-2025'],['Subliminal Verses & Super Unknown - Tribute To Slipknot & Soundgarden','Joe's Live','Rosemont, IL','Friday','5/30/2025','7:45 PM','6969257','Subliminal-Verses---Super-Unknown---Tribute-To-Slipknot---Soundgarden-5-30-2025'],['SIC - Tribute to Slipknot','Scout Bar - Houston','Houston, TX','Saturday','6/21/2025','9:00 PM','6978742','SIC---Tribute-to-Slipknot-6-21-2025'],['Subliminal Verses - Tribute To Slipknot','The Forge - Joliet','Joliet, IL','Saturday','6/28/2025','6:00 PM','6973903','Subliminal-Verses---Tribute-To-Slipknot-6-28-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'],['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']],'Slipknot','http://www.ticketnetwork.com/ticket/Slipknot-events.aspx');