//
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-01A
TN_Widget.CreateTable([['Early James','MilkBoy Philly','Philadelphia, PA','Friday','2/14/2025','8:30 PM','6767047','Early-James-2-14-2025'],['Jeffrey Martin','MilkBoy Philly','Philadelphia, PA','Friday','2/28/2025','8:30 PM','6839847','Jeffrey-Martin-2-28-2025'],['The Takes','MilkBoy Philly','Philadelphia, PA','Tuesday','3/4/2025','8:00 PM','6879425','The-Takes-3-4-2025'],['The Astronomers & Kyle Hume','MilkBoy Philly','Philadelphia, PA','Thursday','3/6/2025','8:00 PM','6763627','The-Astronomers---Kyle-Hume-3-6-2025'],['Baths','MilkBoy Philly','Philadelphia, PA','Sunday','3/23/2025','7:30 PM','6930076','Baths-3-23-2025'],['The Brokes','MilkBoy Philly','Philadelphia, PA','Friday','3/28/2025','8:30 PM','6914704','The-Brokes-3-28-2025'],['Butcher Brown','MilkBoy Philly','Philadelphia, PA','Saturday','4/5/2025','8:30 PM','6890166','Butcher-Brown-4-5-2025'],['Brother Ali','MilkBoy Philly','Philadelphia, PA','Tuesday','4/22/2025','8:00 PM','6975782','Brother-Ali-4-22-2025'],['Faetooth','MilkBoy Philly','Philadelphia, PA','Wednesday','4/23/2025','8:00 PM','6950729','Faetooth-4-23-2025'],['Nolan Taylor','MilkBoy Philly','Philadelphia, PA','Saturday','5/3/2025','8:30 PM','6930165','Nolan-Taylor-5-3-2025']],'MilkBoy','https://www.ticketnetwork.com/ticket/MilkBoy-events.aspx');