//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-03A
TN_Widget.CreateTable([['FM Championship - Thursday','TPC Boston','Norton, MA','Thursday','8/28/2025','8:00 AM','6742055','FM-Championship---Thursday-8-28-2025'],['FM Championship - Friday','TPC Boston','Norton, MA','Friday','8/29/2025','8:00 AM','6742056','FM-Championship---Friday-8-29-2025'],['FM Championship - Saturday','TPC Boston','Norton, MA','Saturday','8/30/2025','8:00 AM','6742057','FM-Championship---Saturday-8-30-2025'],['FM Championship - Sunday','TPC Boston','Norton, MA','Sunday','8/31/2025','8:00 AM','6742058','FM-Championship---Sunday-8-31-2025'],['College Football Playoff National Championship','Hard Rock Stadium','Miami Gardens, FL','Monday','1/19/2026','TBD','6944755','College-Football-Playoff-National-Championship-1-19-2026'],['The Players Championship - Monday','TPC Sawgrass','Ponte Vedra Beach, FL','Monday','3/9/2026','8:00 AM','7043246','The-Players-Championship---Monday-3-9-2026'],['The Players Championship - Wednesday','TPC Sawgrass','Ponte Vedra Beach, FL','Wednesday','3/11/2026','8:00 AM','7043249','The-Players-Championship---Wednesday-3-11-2026'],['The Players Championship - Thursday','TPC Sawgrass','Ponte Vedra Beach, FL','Thursday','3/12/2026','8:00 AM','7043245','The-Players-Championship---Thursday-3-12-2026'],['The Players Championship - Friday','TPC Sawgrass','Ponte Vedra Beach, FL','Friday','3/13/2026','8:00 AM','7043250','The-Players-Championship---Friday-3-13-2026'],['The Players Championship - Saturday','TPC Sawgrass','Ponte Vedra Beach, FL','Saturday','3/14/2026','8:00 AM','7043247','The-Players-Championship---Saturday-3-14-2026'],['The Players Championship - Sunday','TPC Sawgrass','Ponte Vedra Beach, FL','Sunday','3/15/2026','8:00 AM','7043244','The-Players-Championship---Sunday-3-15-2026']],'The Players Championship','https://www.ticketnetwork.com/ticket/The-Players-Championship-events.aspx');