//
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([['Formula 1: Abu Dhabi Grand Prix - 3 Day Pass','Yas Marina Circuit','Abu Dhabi, United Arab Emirates','Friday','12/5/2025','TBD','6653813','Formula-1--Abu-Dhabi-Grand-Prix---3-Day-Pass-12-5-2025'],['Formula 1: Abu Dhabi Grand Prix - Friday','Yas Marina Circuit','Abu Dhabi, United Arab Emirates','Friday','12/5/2025','1:30 PM','6755237','Formula-1--Abu-Dhabi-Grand-Prix---Friday-12-5-2025'],['Formula 1: Abu Dhabi Grand Prix - Saturday','Yas Marina Circuit','Abu Dhabi, United Arab Emirates','Saturday','12/6/2025','2:30 PM','6755238','Formula-1--Abu-Dhabi-Grand-Prix---Saturday-12-6-2025'],['Formula 1: Abu Dhabi Grand Prix - Sunday','Yas Marina Circuit','Abu Dhabi, United Arab Emirates','Sunday','12/7/2025','5:00 PM','6755239','Formula-1--Abu-Dhabi-Grand-Prix---Sunday-12-7-2025'],['National Western Stock Show: Grand Prix','Events Center at National Western Complex','Denver, CO','Monday','1/19/2026','7:00 PM','7014373','National-Western-Stock-Show--Grand-Prix-1-19-2026'],['IndyCar Series: Grand Prix of St. Petersburg - 3 Day Pass','Grand Prix - St. Petersburg','St. Petersburg, FL','Friday','2/27/2026','TBD','7414892','IndyCar-Series--Grand-Prix-of-St--Petersburg---3-Day-Pass-2-27-2026'],['IndyCar Series: Grand Prix of St. Petersburg - Friday','Grand Prix - St. Petersburg','St. Petersburg, FL','Friday','2/27/2026','4:45 PM','7414893','IndyCar-Series--Grand-Prix-of-St--Petersburg---Friday-2-27-2026'],['NASCAR Craftsman Truck Series','Grand Prix - St. Petersburg','St. Petersburg, FL','Saturday','2/28/2026','TBD','7356937','NASCAR-Craftsman-Truck-Series-2-28-2026'],['IndyCar Series: Grand Prix of St. Petersburg - Saturday','Grand Prix - St. Petersburg','St. Petersburg, FL','Saturday','2/28/2026','8:00 AM','7414894','IndyCar-Series--Grand-Prix-of-St--Petersburg---Saturday-2-28-2026'],['IndyCar Series: Grand Prix of St. Petersburg - Sunday','Grand Prix - St. Petersburg','St. Petersburg, FL','Sunday','3/1/2026','8:00 AM','7414896','IndyCar-Series--Grand-Prix-of-St--Petersburg---Sunday-3-1-2026']],'Grand Prix','https://www.ticketnetwork.com');