//
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([['Flint Symphony Orchestra: Piano, Polka and Pointe - Mozart, Strauss & Tchaikovsky','Whiting Auditorium','Flint, MI','Saturday','2/15/2025','7:30 PM','6485307','Flint-Symphony-Orchestra--Piano--Polka-and-Pointe---Mozart--Strauss---Tchaikovsky-2-15-2025'],['Shrek The Musical','Whiting Auditorium','Flint, MI','Friday','2/21/2025','7:00 PM','6485298','Shrek-The-Musical-2-21-2025'],['Hip-Hop Orchestra','Whiting Auditorium','Flint, MI','Saturday','3/8/2025','7:30 PM','6485303','Hip-Hop-Orchestra-3-8-2025'],['Flint Symphony Orchestra: Peace Meets West - Barber, Wagner & William Harvey','Whiting Auditorium','Flint, MI','Saturday','3/15/2025','7:30 PM','6485308','Flint-Symphony-Orchestra--Peace-Meets-West---Barber--Wagner---William-Harvey-3-15-2025'],['The Godfather Live','Whiting Auditorium','Flint, MI','Saturday','3/29/2025','7:30 PM','6548547','The-Godfather-Live-3-29-2025'],['Menopause - The Musical 2','Whiting Auditorium','Flint, MI','Saturday','4/5/2025','7:30 PM','6485299','Menopause---The-Musical-2-4-5-2025'],['Dragons and Mythical Beasts','Whiting Auditorium','Flint, MI','Friday','4/18/2025','7:00 PM','6485311','Dragons-and-Mythical-Beasts-4-18-2025'],['Flint Symphony Orchestra: Super/Natural - The Sorcerer's Apprentice & Beethoven's Pastoral Symphony','Whiting Auditorium','Flint, MI','Saturday','4/26/2025','7:30 PM','6485309','Flint-Symphony-Orchestra--Super-Natural---The-Sorcerer-s-Apprentice---Beethoven-s-Pastoral-Symphony-4-26-2025'],['iLuminate','Whiting Auditorium','Flint, MI','Thursday','5/1/2025','8:00 PM','6485312','iLuminate-5-1-2025'],['Flint Symphony Orchestra: Life, Death, and Mozart - A Little Light Music and Requiem','Whiting Auditorium','Flint, MI','Saturday','5/17/2025','7:30 PM','6485310','Flint-Symphony-Orchestra--Life--Death--and-Mozart---A-Little-Light-Music-and-Requiem-5-17-2025'],['TINA - The Tina Turner Musical','Whiting Auditorium','Flint, MI','Sunday','6/22/2025','7:00 PM','6477456','TINA---The-Tina-Turner-Musical-6-22-2025']],'The Whiting','https://www.ticketnetwork.com/ticket/The-Whiting-events.aspx');