//
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-03A
TN_Widget.CreateTable([['A John Prine Christmas With Jenner Fox Band','Spanish Ballroom at McMenamins Elks Temple','Tacoma, WA','Wednesday','12/10/2025','7:00 PM','7390489','A-John-Prine-Christmas-With-Jenner-Fox-Band-12-10-2025'],['A John Prine Christmas With Jenner Fox Band','Showdown Saloon','Portland, OR','Thursday','12/11/2025','8:00 PM','7424283','A-John-Prine-Christmas-With-Jenner-Fox-Band-12-11-2025'],['A Tribute To John Prine','Bell's Eccentric Cafe','Kalamazoo, MI','Friday','12/19/2025','8:00 PM','7490378','A-Tribute-To-John-Prine-12-19-2025'],['A John Prine Christmas','Freight & Salvage','Berkeley, CA','Saturday','12/20/2025','8:00 PM','7424707','A-John-Prine-Christmas-12-20-2025']],'John Prine','http://www.ticketnetwork.com/ticket/John-Prine-events.aspx');