//
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 dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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 newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-02A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Fair Warning - Van Halen Tribute','The Met - RI','Pawtucket, RI','Saturday','6/6/2026','8:00 PM','7865410','Fair-Warning---Van-Halen-Tribute-6-6-2026'],['The Warning','The Rooftop at Pier 17','New York, NY','Thursday','6/11/2026','7:00 PM','7731894','The-Warning-6-11-2026'],['Ozzmania & Fair Warning - Tributes to Ozzy Osborne & Van Halen','House Of Blues - San Diego','San Diego, CA','Friday','6/12/2026','6:30 PM','7880255','Ozzmania---Fair-Warning---Tributes-to-Ozzy-Osborne---Van-Halen-6-12-2026'],['Fair Warning - Van Halen Tribute','Whisky A Go Go','West Hollywood, CA','Thursday','9/3/2026','6:00 PM','7696635','Fair-Warning---Van-Halen-Tribute-9-3-2026'],['The Warning With Chevron PRCA Xtreme Bulls','Tingley Coliseum at New Mexico State Fairgrounds','Albuquerque, NM','Saturday','9/19/2026','4:00 PM','7726151','The-Warning-With-Chevron-PRCA-Xtreme-Bulls-9-19-2026'],['The Warning (Concert Only)','Tingley Coliseum at New Mexico State Fairgrounds','Albuquerque, NM','Saturday','9/19/2026','6:00 PM','7734417','The-Warning--Concert-Only--9-19-2026'],['The Warning','Biltmore Cabaret','Vancouver, Canada','Wednesday','1/27/2072','9:00 PM','4960641','The-Warning-1-27-2072']],'The Warning','http://www.ticketnetwork.com/en/search/?text=The%20Warning');