//
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-02A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Coachella Valley Firebirds vs. Ontario Reign','Acrisure Arena','Palm Desert, CA','Friday','3/13/2026','7:00 PM','7265098','Coachella-Valley-Firebirds-vs--Ontario-Reign-3-13-2026'],['Ontario Reign vs. Coachella Valley Firebirds','Toyota Arena - Ontario','Ontario, CA','Saturday','3/14/2026','6:00 PM','7265518','Ontario-Reign-vs--Coachella-Valley-Firebirds-3-14-2026'],['San Jose Barracuda vs. Coachella Valley Firebirds','Tech CU Arena','San Jose, CA','Wednesday','3/18/2026','10:30 AM','7265117','San-Jose-Barracuda-vs--Coachella-Valley-Firebirds-3-18-2026'],['Aaron Lewis and The Stateliners','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Friday','3/20/2026','8:00 PM','7506558','Aaron-Lewis-and-The-Stateliners-3-20-2026'],['Colorado Eagles vs. Coachella Valley Firebirds','Blue Federal Credit Union Arena','Loveland, CO','Saturday','3/21/2026','6:05 PM','7265172','Colorado-Eagles-vs--Coachella-Valley-Firebirds-3-21-2026'],['Latin Legacy Tour: Baby Bash, Lil Rob & MC Magic','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Saturday','3/21/2026','8:00 PM','7629179','Latin-Legacy-Tour--Baby-Bash--Lil-Rob---MC-Magic-3-21-2026'],['Colorado Eagles vs. Coachella Valley Firebirds','Blue Federal Credit Union Arena','Loveland, CO','Sunday','3/22/2026','3:05 PM','7265173','Colorado-Eagles-vs--Coachella-Valley-Firebirds-3-22-2026'],['Coachella Valley Firebirds vs. Calgary Wranglers','Acrisure Arena','Palm Desert, CA','Wednesday','3/25/2026','6:30 PM','7265097','Coachella-Valley-Firebirds-vs--Calgary-Wranglers-3-25-2026'],['Coachella Valley Firebirds vs. San Jose Barracuda','Acrisure Arena','Palm Desert, CA','Saturday','3/28/2026','6:00 PM','7265102','Coachella-Valley-Firebirds-vs--San-Jose-Barracuda-3-28-2026'],['Tower of Power','Spotlight Showroom at Spotlight 29 Casino','Coachella, CA','Saturday','3/28/2026','8:00 PM','7658971','Tower-of-Power-3-28-2026']],'"Coachella"','https://www.ticketnetwork.com');