//
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-04A
TN_Widget.CreateTable([['George Bell','Manship Theatre','Baton Rouge, LA','Friday','12/12/2025','7:30 PM','7586253','George-Bell-12-12-2025'],['George Bell','Manship Theatre','Baton Rouge, LA','Saturday','12/13/2025','7:30 PM','7586254','George-Bell-12-13-2025'],['Home For The Holidays','Manship Theatre','Baton Rouge, LA','Sunday','12/28/2025','7:00 PM','7476202','Home-For-The-Holidays-12-28-2025'],['Jim Lauderdale and The Game Changers','Manship Theatre','Baton Rouge, LA','Friday','1/9/2026','7:30 PM','7478075','Jim-Lauderdale-and-The-Game-Changers-1-9-2026'],['John Pizzarelli','Manship Theatre','Baton Rouge, LA','Tuesday','1/13/2026','7:30 PM','7420542','John-Pizzarelli-1-13-2026'],['The Klezmatics','Manship Theatre','Baton Rouge, LA','Wednesday','1/21/2026','7:30 PM','7478128','The-Klezmatics-1-21-2026'],['Steep Canyon Rangers','Manship Theatre','Baton Rouge, LA','Thursday','1/22/2026','7:30 PM','7478127','Steep-Canyon-Rangers-1-22-2026'],['Anders Osborne','Manship Theatre','Baton Rouge, LA','Thursday','2/5/2026','7:30 PM','7478126','Anders-Osborne-2-5-2026'],['Toast - The Ultimate Bread Experience','Manship Theatre','Baton Rouge, LA','Thursday','2/12/2026','7:30 PM','7478129','Toast---The-Ultimate-Bread-Experience-2-12-2026'],['The Paul Thorn Band','Manship Theatre','Baton Rouge, LA','Friday','2/20/2026','7:30 PM','7586356','The-Paul-Thorn-Band-2-20-2026'],['Glenn Miller Orchestra','Manship Theatre','Baton Rouge, LA','Sunday','2/22/2026','7:00 PM','7567363','Glenn-Miller-Orchestra-2-22-2026'],['Glenn Miller Orchestra','Manship Theatre','Baton Rouge, LA','Monday','2/23/2026','7:00 PM','7567364','Glenn-Miller-Orchestra-2-23-2026'],['Morgan James','Manship Theatre','Baton Rouge, LA','Thursday','3/5/2026','7:30 PM','7420546','Morgan-James-3-5-2026'],['Ann Hampton Callaway','Manship Theatre','Baton Rouge, LA','Wednesday','4/22/2026','7:30 PM','7478166','Ann-Hampton-Callaway-4-22-2026'],['Emerson, Lake & Palmer','Manship Theatre','Baton Rouge, LA','Tuesday','4/28/2026','7:30 PM','7478167','Emerson--Lake---Palmer-4-28-2026'],['Luca Stricagnoli','Manship Theatre','Baton Rouge, LA','Thursday','4/30/2026','7:30 PM','7582740','Luca-Stricagnoli-4-30-2026'],['CJ Solar','Manship Theatre','Baton Rouge, LA','Friday','5/8/2026','7:30 PM','7586357','CJ-Solar-5-8-2026'],['Vincent Herring's Something Else','Manship Theatre','Baton Rouge, LA','Wednesday','5/13/2026','7:30 PM','7376037','Vincent-Herring-s-Something-Else-5-13-2026'],['Live from Laurel Canyon','Manship Theatre','Baton Rouge, LA','Thursday','5/14/2026','7:30 PM','7586629','Live-from-Laurel-Canyon-5-14-2026']],'Manship Theatre','https://www.ticketnetwork.com/ticket/Manship-Theatre-events.aspx');