//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Brazos Valley Symphony Orchestra: Video Games Live','Rudder Auditorium','College Station, TX','Sunday','1/25/2026','5:00 PM','7340678','Brazos-Valley-Symphony-Orchestra--Video-Games-Live-1-25-2026'],['Video Games Live','Branscomb Memorial Auditorium','Lakeland, FL','Saturday','3/14/2026','2:30 PM','7548156','Video-Games-Live-3-14-2026'],['Williamsport Symphony Orchestra: Video Games In Concert','Journey Bank Community Arts Center','Williamsport, PA','Tuesday','3/17/2026','7:30 PM','7585406','Williamsport-Symphony-Orchestra--Video-Games-In-Concert-3-17-2026'],['Calgary Philharmonic Orchestra: Eimear Noone - Video Games in Concert','Southern Alberta Jubilee Auditorium','Calgary, Canada','Saturday','3/28/2026','7:30 PM','7207571','Calgary-Philharmonic-Orchestra--Eimear-Noone---Video-Games-in-Concert-3-28-2026'],['Huntsville Symphony Orchestra: Video Games Live','Mark C. Smith Concert Hall at the Von Braun Center','Huntsville, AL','Saturday','4/25/2026','7:30 PM','7462060','Huntsville-Symphony-Orchestra--Video-Games-Live-4-25-2026'],['Austin Symphony Orchestra: Video Games Live','Dell Hall at Long Center For The Performing Arts','Austin, TX','Friday','5/29/2026','7:30 PM','7289243','Austin-Symphony-Orchestra--Video-Games-Live-5-29-2026']],'video games live','http://www.ticketnetwork.com/en/search/?text=video%20games%20live');