//
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-04A
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([['San Antonio Philharmonic: Jeffrey Kahane - Beethoven 9','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','11/16/2024','7:30 PM','6460324','San-Antonio-Philharmonic--Jeffrey-Kahane---Beethoven-9-11-16-2024'],['San Antonio Philharmonic: Jeffrey Kahane - Beethoven 9','Majestic Theatre - San Antonio','San Antonio, TX','Sunday','11/17/2024','2:00 PM','6472068','San-Antonio-Philharmonic--Jeffrey-Kahane---Beethoven-9-11-17-2024'],['Kem','Majestic Theatre - San Antonio','San Antonio, TX','Thursday','11/21/2024','7:00 PM','6612257','Kem-11-21-2024'],['A Magical Cirque Christmas','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','11/23/2024','7:30 PM','6590540','A-Magical-Cirque-Christmas-11-23-2024'],['Shucked','Majestic Theatre - San Antonio','San Antonio, TX','Tuesday','11/26/2024','7:30 PM','6322667','Shucked-11-26-2024'],['Shucked','Majestic Theatre - San Antonio','San Antonio, TX','Wednesday','11/27/2024','7:30 PM','6322668','Shucked-11-27-2024'],['Shucked','Majestic Theatre - San Antonio','San Antonio, TX','Friday','11/29/2024','2:00 PM','6322670','Shucked-11-29-2024'],['Shucked','Majestic Theatre - San Antonio','San Antonio, TX','Friday','11/29/2024','7:30 PM','6322669','Shucked-11-29-2024'],['Shucked','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','11/30/2024','2:00 PM','6322671','Shucked-11-30-2024'],['Shucked','Majestic Theatre - San Antonio','San Antonio, TX','Saturday','11/30/2024','7:30 PM','6322672','Shucked-11-30-2024']],'Majestic Theatre San Antonio','http://www.ticketnetwork.com/en/search/?text=Majestic%20Theatre%20San%20Antonio');