//
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([['Exhibition: Southern Methodist (SMU) Mustangs Women's Basketball vs. Cal State LA Golden Eagles','Moody Coliseum','Dallas, TX','Monday','10/27/2025','6:30 PM','7356720','Exhibition--Southern-Methodist--SMU--Mustangs-Women-s-Basketball-vs--Cal-State-LA-Golden-Eagles-10-27-2025'],['Exhibition: Arizona Wildcats vs. Embry-Riddle Eagles','McKale Center','Tucson, AZ','Monday','10/27/2025','7:00 PM','7419629','Exhibition--Arizona-Wildcats-vs--Embry-Riddle-Eagles-10-27-2025'],['Exhibition: Middle Tennessee State Blue Raiders Women's Basketball vs. Life Running Eagles','Murphy Center','Murfreesboro, TN','Tuesday','10/28/2025','6:30 PM','7322027','Exhibition--Middle-Tennessee-State-Blue-Raiders-Women-s-Basketball-vs--Life-Running-Eagles-10-28-2025'],['Colorado Eagles vs. Bakersfield Condors','Blue Federal Credit Union Arena','Loveland, CO','Tuesday','10/28/2025','7:05 PM','7265127','Colorado-Eagles-vs--Bakersfield-Condors-10-28-2025'],['Take It To The Limit - Eagles Tribute','The Craterian Theater at The Collier Center','Medford, OR','Tuesday','10/28/2025','7:30 PM','7278895','Take-It-To-The-Limit---Eagles-Tribute-10-28-2025'],['Hotel California - Eagles Tribute','Bing Crosby Theater','Spokane, WA','Tuesday','10/28/2025','7:30 PM','7214712','Hotel-California---Eagles-Tribute-10-28-2025'],['Cape Breton Eagles vs. Saint John Sea Dogs','Centre 200','Sydney, Canada','Wednesday','10/29/2025','7:00 PM','7370279','Cape-Breton-Eagles-vs--Saint-John-Sea-Dogs-10-29-2025'],['DePaul Blue Demons Women's Volleyball vs. Marquette Golden Eagles','McGrath-Phillips Arena','Chicago, IL','Wednesday','10/29/2025','7:00 PM','7363795','DePaul-Blue-Demons-Women-s-Volleyball-vs--Marquette-Golden-Eagles-10-29-2025'],['Exhibition: Stanford Cardinal Women's Basketball vs. Cal State LA Golden Eagles','Maples Pavilion','Stanford, CA','Wednesday','10/29/2025','7:00 PM','7495552','Exhibition--Stanford-Cardinal-Women-s-Basketball-vs--Cal-State-LA-Golden-Eagles-10-29-2025'],['Colorado Eagles vs. Bakersfield Condors','Blue Federal Credit Union Arena','Loveland, CO','Wednesday','10/29/2025','7:05 PM','7265128','Colorado-Eagles-vs--Bakersfield-Condors-10-29-2025']],'The Eagles','https://www.ticketnetwork.com');