//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Dirty Dancing in Concert','Midland Theatre - OH','Newark, OH','Wednesday','2/5/2025','7:00 PM','6924820','Dirty-Dancing-in-Concert-2-5-2025'],['Hadestown','Auditorium Theatre At Midland Center For The Arts','Midland, MI','Friday','2/7/2025','7:30 PM','6700874','Hadestown-2-7-2025'],['Los Invasores de Nuevo Leon','La Hacienda Event Center','Midland, TX','Friday','2/7/2025','8:00 PM','6871046','Los-Invasores-de-Nuevo-Leon-2-7-2025'],['Hadestown','Auditorium Theatre At Midland Center For The Arts','Midland, MI','Saturday','2/8/2025','2:00 PM','6700875','Hadestown-2-8-2025'],['Hadestown','Auditorium Theatre At Midland Center For The Arts','Midland, MI','Saturday','2/8/2025','7:30 PM','6700876','Hadestown-2-8-2025'],['Hadestown','Auditorium Theatre At Midland Center For The Arts','Midland, MI','Sunday','2/9/2025','2:00 PM','6700877','Hadestown-2-9-2025'],['R.E.S.P.E.C.T - Aretha Franklin Tribute','Wagner Noel Performing Arts Center','Midland, TX','Monday','2/10/2025','7:30 PM','6833129','R-E-S-P-E-C-T---Aretha-Franklin-Tribute-2-10-2025'],['The Price Is Right - Live Stage Show','Auditorium Theatre At Midland Center For The Arts','Midland, MI','Tuesday','2/11/2025','7:30 PM','6947131','The-Price-Is-Right---Live-Stage-Show-2-11-2025'],['Ballet Folklorico de Mexico','Wagner Noel Performing Arts Center','Midland, TX','Tuesday','2/11/2025','7:30 PM','6898107','Ballet-Folklorico-de-Mexico-2-11-2025'],['Decades of Love: It's A Celebration','Wagner Noel Performing Arts Center','Midland, TX','Wednesday','2/12/2025','7:30 PM','6314532','Decades-of-Love--It-s-A-Celebration-2-12-2025']],'Midland','https://www.ticketnetwork.com');