//
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-03A
TN_Widget.CreateTable([['Three Dog Night','Amarillo Civic Center Auditorium','Amarillo, TX','Thursday','2/19/2026','7:00 PM','7510185','Three-Dog-Night-2-19-2026'],['Amarillo Wranglers vs. New Mexico Ice Wolves','Amarillo Civic Center','Amarillo, TX','Friday','2/20/2026','7:14 PM','7399980','Amarillo-Wranglers-vs--New-Mexico-Ice-Wolves-2-20-2026'],['Amarillo Wranglers vs. New Mexico Ice Wolves','Amarillo Civic Center','Amarillo, TX','Saturday','2/21/2026','7:14 PM','7399981','Amarillo-Wranglers-vs--New-Mexico-Ice-Wolves-2-21-2026'],['Amarillo Wranglers vs. New Mexico Ice Wolves','Amarillo Civic Center','Amarillo, TX','Friday','2/27/2026','7:14 PM','7399982','Amarillo-Wranglers-vs--New-Mexico-Ice-Wolves-2-27-2026'],['Amarillo Wranglers vs. New Mexico Ice Wolves','Amarillo Civic Center','Amarillo, TX','Saturday','2/28/2026','7:14 PM','7399983','Amarillo-Wranglers-vs--New-Mexico-Ice-Wolves-2-28-2026'],['Amarillo Wranglers vs. Oklahoma Warriors','Amarillo Civic Center','Amarillo, TX','Friday','3/20/2026','7:14 PM','7399984','Amarillo-Wranglers-vs--Oklahoma-Warriors-3-20-2026'],['Amarillo Wranglers vs. Oklahoma Warriors','Amarillo Civic Center','Amarillo, TX','Saturday','3/21/2026','7:14 PM','7399985','Amarillo-Wranglers-vs--Oklahoma-Warriors-3-21-2026'],['ZZ Top','Amarillo Civic Center Auditorium','Amarillo, TX','Sunday','3/22/2026','8:00 PM','7617968','ZZ-Top-3-22-2026'],['The Harlem Globetrotters','Amarillo Civic Center','Amarillo, TX','Wednesday','4/1/2026','7:00 PM','7395415','The-Harlem-Globetrotters-4-1-2026'],['Kenny G','Amarillo Civic Center Auditorium','Amarillo, TX','Friday','4/10/2026','7:00 PM','7703897','Kenny-G-4-10-2026'],['Ralph Barbosa','Amarillo Civic Center Auditorium','Amarillo, TX','Thursday','4/23/2026','7:30 PM','7691186','Ralph-Barbosa-4-23-2026'],['John Crist','Amarillo Civic Center Auditorium','Amarillo, TX','Sunday','5/3/2026','7:00 PM','7478147','John-Crist-5-3-2026']],'Amarillo Civic Center','https://www.ticketnetwork.com/ticket/Amarillo-Civic-Center-events.aspx');