// 
	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([['Ryan Bingham & The Texas Gentlemen','The Tailgate','Midland, TX','Wednesday','11/5/2025','6:00 PM','7283392','Ryan-Bingham---The-Texas-Gentlemen-11-5-2025'],['Sesame Street Live: Elmo and Friends Say Hello','Midland Theatre - OH','Newark, OH','Thursday','11/6/2025','6:00 PM','7217121','Sesame-Street-Live--Elmo-and-Friends-Say-Hello-11-6-2025'],['Charlie Berens','The Midland Theatre - MO','Kansas City, MO','Friday','11/7/2025','7:00 PM','7195959','Charlie-Berens-11-7-2025'],['Midland - Band','IP Casino Resort And Spa','Biloxi, MS','Friday','11/7/2025','8:00 PM','6874908','Midland---Band-11-7-2025'],['Northwood Timberwolves vs. Tiffin Dragons','Hantz Stadium','Midland, MI','Saturday','11/8/2025','12:00 PM','7233389','Northwood-Timberwolves-vs--Tiffin-Dragons-11-8-2025'],['512: The Selena Experience','The Tailgate','Midland, TX','Saturday','11/8/2025','6:00 PM','7467706','512--The-Selena-Experience-11-8-2025'],['Ali Siddiq','The Midland Theatre - MO','Kansas City, MO','Saturday','11/8/2025','7:00 PM','7196004','Ali-Siddiq-11-8-2025'],['Sense and Sensibility','Little Theatre At Midland Center For The Arts','Midland, MI','Saturday','11/8/2025','7:30 PM','7255595','Sense-and-Sensibility-11-8-2025'],['West Texas Symphony: WTS Spotlight','Wagner Noel Performing Arts Center','Midland, TX','Saturday','11/8/2025','7:30 PM','7143697','West-Texas-Symphony--WTS-Spotlight-11-8-2025'],['Midland - Band','John T. Floore Country Store','Helotes, TX','Saturday','11/8/2025','8:30 PM','7141059','Midland---Band-11-8-2025']],'Midland','https://www.ticketnetwork.com');