//
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-01A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['FIFA World Cup 26: Group K: Portugal vs. DR Congo - Match 23','Houston Stadium','Houston, TX','Wednesday','6/17/2026','12:00 PM','6259715','FIFA-World-Cup-26--Group-K--Portugal-vs--DR-Congo---Match-23-6-17-2026'],['Houston Astros vs. Detroit Tigers','Daikin Park','Houston, TX','Wednesday','6/17/2026','1:10 PM','7367725','Houston-Astros-vs--Detroit-Tigers-6-17-2026'],['Drunk Romeo & Juliet','Emerald Theatre - Houston','Houston, TX','Wednesday','6/17/2026','7:00 PM','7656236','Drunk-Romeo---Juliet-6-17-2026'],['Todd Rundgren','House Of Blues - Houston','Houston, TX','Wednesday','6/17/2026','7:00 PM','7831062','Todd-Rundgren-6-17-2026'],['Misery','Hubbard Stage - Alley Theatre','Houston, TX','Wednesday','6/17/2026','7:30 PM','7485630','Misery-6-17-2026'],['The Outlaw Comics ','The Improv - Houston','Houston, TX','Wednesday','6/17/2026','7:30 PM','7792536','The-Outlaw-Comics--6-17-2026'],['The Hunchback of Notre Dame','Cullen Theater At Wortham Theater Center','Houston, TX','Wednesday','6/17/2026','7:30 PM','7816447','The-Hunchback-of-Notre-Dame-6-17-2026'],['The Dope Show','Punch Line Comedy Club - Houston','Houston, TX','Wednesday','6/17/2026','7:30 PM','7924893','The-Dope-Show-6-17-2026'],['Delta Sleep','The Secret Group','Houston, TX','Wednesday','6/17/2026','8:00 PM','7831813','Delta-Sleep-6-17-2026'],['Your Arms Are My Cocoon','White Oak Music Hall - Downstairs','Houston, TX','Thursday','6/18/2026','5:00 PM','8015846','Your-Arms-Are-My-Cocoon-6-18-2026']],'Houston Tx','https://www.ticketnetwork.com');