//
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([['Mecum Auto Auction','NRG Center','Houston, TX','Thursday','4/3/2025','8:00 AM','6660111','Mecum-Auto-Auction-4-3-2025'],['Mecum Auto Auction','NRG Center','Houston, TX','Friday','4/4/2025','8:00 AM','6660112','Mecum-Auto-Auction-4-4-2025'],['Mecum Auto Auction','NRG Center','Houston, TX','Saturday','4/5/2025','8:00 AM','6660113','Mecum-Auto-Auction-4-5-2025'],['Houston Tattoo Arts Festival - 3 Day Pass','NRG Center','Houston, TX','Friday','6/6/2025','TBD','6954503','Houston-Tattoo-Arts-Festival---3-Day-Pass-6-6-2025'],['Houston Tattoo Arts Festival - Friday','NRG Center','Houston, TX','Friday','6/6/2025','2:00 PM','6954504','Houston-Tattoo-Arts-Festival---Friday-6-6-2025'],['Houston Tattoo Arts Festival - Saturday','NRG Center','Houston, TX','Saturday','6/7/2025','11:00 AM','6954505','Houston-Tattoo-Arts-Festival---Saturday-6-7-2025'],['Houston Tattoo Arts Festival - Sunday','NRG Center','Houston, TX','Sunday','6/8/2025','11:00 AM','6954506','Houston-Tattoo-Arts-Festival---Sunday-6-8-2025'],['Jurassic Quest (Multiple Dates and Times)','NRG Center','Houston, TX','Friday','8/1/2025','TBD','7031359','Jurassic-Quest--Multiple-Dates-and-Times--8-1-2025'],['Jurassic Quest (Multiple Dates and Times)','NRG Center','Houston, TX','Saturday','8/2/2025','TBD','7031360','Jurassic-Quest--Multiple-Dates-and-Times--8-2-2025'],['Jurassic Quest (Multiple Dates and Times)','NRG Center','Houston, TX','Sunday','8/3/2025','TBD','7031361','Jurassic-Quest--Multiple-Dates-and-Times--8-3-2025']],'Reliant Center','https://www.ticketnetwork.com/ticket/Reliant-Center-events.aspx');