//
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([['Dancing with the Stars Live','Orpheum Theatre - Madison ','Madison, WI','Saturday','2/15/2025','3:30 PM','6775452','Dancing-with-the-Stars-Live-2-15-2025'],['Dancing with the Stars Live','Orpheum Theatre - Madison ','Madison, WI','Saturday','2/15/2025','7:30 PM','6752057','Dancing-with-the-Stars-Live-2-15-2025'],['Aziz Ansari','Orpheum Theatre - Madison ','Madison, WI','Saturday','3/8/2025','7:00 PM','6874472','Aziz-Ansari-3-8-2025'],['Drew Lynch','Orpheum Theatre - Madison ','Madison, WI','Friday','4/4/2025','8:00 PM','6764341','Drew-Lynch-4-4-2025'],['Brett Young','Orpheum Theatre - Madison ','Madison, WI','Thursday','4/10/2025','8:00 PM','6862052','Brett-Young-4-10-2025'],['Tom Papa','Orpheum Theatre - Madison ','Madison, WI','Saturday','4/12/2025','8:00 PM','6837639','Tom-Papa-4-12-2025'],['Sam Morril','Orpheum Theatre - Madison ','Madison, WI','Monday','4/14/2025','6:00 PM','6764068','Sam-Morril-4-14-2025'],['Stavros Halkias','Orpheum Theatre - Madison ','Madison, WI','Friday','4/18/2025','7:00 PM','6837464','Stavros-Halkias-4-18-2025'],['Iron and Wine','Orpheum Theatre - Madison ','Madison, WI','Tuesday','4/22/2025','7:00 PM','6878634','Iron-and-Wine-4-22-2025'],['Trevor Wallace','Orpheum Theatre - Madison ','Madison, WI','Friday','4/25/2025','7:00 PM','6931172','Trevor-Wallace-4-25-2025'],['Stop Making Sense','Orpheum Theatre - Madison ','Madison, WI','Saturday','4/26/2025','8:00 PM','6945365','Stop-Making-Sense-4-26-2025'],['Nick Swardson','Orpheum Theatre - Madison ','Madison, WI','Wednesday','4/30/2025','7:30 PM','6443601','Nick-Swardson-4-30-2025'],['Daniel Tosh','Orpheum Theatre - Madison ','Madison, WI','Sunday','6/22/2025','8:00 PM','6959675','Daniel-Tosh-6-22-2025']],'Orpheum Theatre Madison','https://www.ticketnetwork.com/ticket/Orpheum-Theatre-Madison-events.aspx');