//
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-01A
TN_Widget.CreateTable([['Rock Never Stops Tribute','The Machine Shop Concert Lounge','Flint, MI','Saturday','1/3/2026','7:00 PM','7505474','Rock-Never-Stops-Tribute-1-3-2026'],['Jump - America's Van Halen Experience','The Machine Shop Concert Lounge','Flint, MI','Saturday','1/10/2026','7:00 PM','7505468','Jump---America-s-Van-Halen-Experience-1-10-2026'],['Thunderstruck - A Tribute To AC/DC','The Machine Shop Concert Lounge','Flint, MI','Friday','1/16/2026','7:00 PM','7505469','Thunderstruck---A-Tribute-To-AC-DC-1-16-2026'],['Josey Scott','The Machine Shop Concert Lounge','Flint, MI','Friday','1/23/2026','7:00 PM','7505467','Josey-Scott-1-23-2026'],['Ward Davis','The Machine Shop Concert Lounge','Flint, MI','Friday','2/13/2026','7:00 PM','7615970','Ward-Davis-2-13-2026'],['The Four Horsemen - Tribute to Metallica','The Machine Shop Concert Lounge','Flint, MI','Friday','2/20/2026','7:00 PM','7505476','The-Four-Horsemen---Tribute-to-Metallica-2-20-2026'],['Candlebox','The Machine Shop Concert Lounge','Flint, MI','Monday','3/2/2026','7:00 PM','7574936','Candlebox-3-2-2026'],['Candlebox','The Machine Shop Concert Lounge','Flint, MI','Tuesday','3/3/2026','7:00 PM','7556718','Candlebox-3-3-2026'],['Tyler Farr','The Machine Shop Concert Lounge','Flint, MI','Friday','3/13/2026','7:00 PM','7505456','Tyler-Farr-3-13-2026'],['Jon Langston','The Machine Shop Concert Lounge','Flint, MI','Thursday','4/2/2026','7:00 PM','7612985','Jon-Langston-4-2-2026'],['Magnolia Park','The Machine Shop Concert Lounge','Flint, MI','Sunday','4/12/2026','6:30 PM','7568962','Magnolia-Park-4-12-2026'],['Uli Jon Roth','The Machine Shop Concert Lounge','Flint, MI','Sunday','4/19/2026','7:00 PM','7505466','Uli-Jon-Roth-4-19-2026'],['The Sheepdogs','The Machine Shop - ON','Sault Ste Marie, Canada','Tuesday','4/28/2026','8:00 PM','7548658','The-Sheepdogs-4-28-2026'],['All That Remains, Born of Osiris & Dead Eyes','The Machine Shop Concert Lounge','Flint, MI','Tuesday','5/19/2026','6:00 PM','7630032','All-That-Remains--Born-of-Osiris---Dead-Eyes-5-19-2026']],'The Machine Shop','http://www.ticketnetwork.com/ticket/The-Machine-Shop-events.aspx');