//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Drunk Pirates','Emerald Theatre - Houston','Houston, TX','Wednesday','7/1/2026','7:00 PM','8059819','Drunk-Pirates-7-1-2026'],['Houston Astros vs. Minnesota Twins','Daikin Park','Houston, TX','Wednesday','7/1/2026','7:10 PM','7367760','Houston-Astros-vs--Minnesota-Twins-7-1-2026'],['Joseph And The Amazing Technicolor Dreamcoat','The George Theater','Houston, TX','Wednesday','7/1/2026','7:30 PM','7775398','Joseph-And-The-Amazing-Technicolor-Dreamcoat-7-1-2026'],['The Hunchback of Notre Dame','Cullen Theater At Wortham Theater Center','Houston, TX','Wednesday','7/1/2026','7:30 PM','7817991','The-Hunchback-of-Notre-Dame-7-1-2026'],['The Medium Spicy Show','Punch Line Comedy Club - Houston','Houston, TX','Wednesday','7/1/2026','7:30 PM','7988169','The-Medium-Spicy-Show-7-1-2026'],['The One Minute Comedy Showdown','The Riot Comedy Club At Rudyard's Pub','Houston, TX','Wednesday','7/1/2026','9:00 PM','8063673','The-One-Minute-Comedy-Showdown-7-1-2026'],['Thursday Night Standup Comedy Showcase','The Riot Comedy Club At Rudyard's Pub','Houston, TX','Thursday','7/2/2026','7:00 PM','8063658','Thursday-Night-Standup-Comedy-Showcase-7-2-2026'],['Drunk Pirates','Emerald Theatre - Houston','Houston, TX','Thursday','7/2/2026','7:00 PM','8059820','Drunk-Pirates-7-2-2026'],['Joseph And The Amazing Technicolor Dreamcoat','The George Theater','Houston, TX','Thursday','7/2/2026','7:30 PM','7775399','Joseph-And-The-Amazing-Technicolor-Dreamcoat-7-2-2026'],['Von Decarlo','Punch Line Comedy Club - Houston','Houston, TX','Thursday','7/2/2026','7:30 PM','7805920','Von-Decarlo-7-2-2026']],'Houston Tx','https://www.ticketnetwork.com');