//
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([['Army West Point Black Knights vs. Navy Midshipmen','M&T Bank Stadium','Baltimore, MD','Saturday','12/13/2025','3:00 PM','6883564','Army-West-Point-Black-Knights-vs--Navy-Midshipmen-12-13-2025'],['Baltimore Ravens vs. New England Patriots','M&T Bank Stadium','Baltimore, MD','Sunday','12/21/2025','8:20 PM','6977644','Baltimore-Ravens-vs--New-England-Patriots-12-21-2025'],['AFC Wild Card Home Game: Baltimore Ravens vs. TBD (Date: TBD - If Necessary)','M&T Bank Stadium','Baltimore, MD','Sunday','1/11/2026','TBD','7551575','AFC-Wild-Card-Home-Game--Baltimore-Ravens-vs--TBD--Date--TBD---If-Necessary--1-11-2026'],['AFC Divisional Home Game: Baltimore Ravens vs. TBD (Date: TBD - If Necessary)','M&T Bank Stadium','Baltimore, MD','Sunday','1/18/2026','TBD','7551578','AFC-Divisional-Home-Game--Baltimore-Ravens-vs--TBD--Date--TBD---If-Necessary--1-18-2026'],['AFC Championship Game: Baltimore Ravens vs. TBD (If Necessary)','M&T Bank Stadium','Baltimore, MD','Sunday','1/25/2026','TBD','7551579','AFC-Championship-Game--Baltimore-Ravens-vs--TBD--If-Necessary--1-25-2026'],['D.C. United vs. Inter Miami CF','M&T Bank Stadium','Baltimore, MD','Saturday','3/7/2026','4:30 PM','7577010','D-C--United-vs--Inter-Miami-CF-3-7-2026'],['Morgan Wallen, Brooks & Dunn, Gavin Adcock, & Jason Scott and The High Heat','M&T Bank Stadium','Baltimore, MD','Friday','7/17/2026','5:30 PM','7529806','Morgan-Wallen--Brooks---Dunn--Gavin-Adcock----Jason-Scott-and-The-High-Heat-7-17-2026'],['Morgan Wallen, Ella Langley, Gavin Adcock, & Jason Scott and The High Heat','M&T Bank Stadium','Baltimore, MD','Saturday','7/18/2026','5:30 PM','7529807','Morgan-Wallen--Ella-Langley--Gavin-Adcock----Jason-Scott-and-The-High-Heat-7-18-2026']],'','https://www.ticketnetwork.com');