//
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([['Foghat','We-Ko-Pa Conference Center','Fort Mcdowell, AZ','Friday','1/9/2026','8:00 PM','6946780','Foghat-1-9-2026'],['Foghat','Soboba Casino','San Jacinto, CA','Saturday','1/10/2026','8:00 PM','7522350','Foghat-1-10-2026'],['Foghat','Belly Up Tavern','Solana Beach, CA','Wednesday','1/28/2026','7:30 PM','7295118','Foghat-1-28-2026'],['Foghat','Castle Theater at Maui Arts & Cultural Center','Kahului, HI','Thursday','2/5/2026','7:30 PM','7549363','Foghat-2-5-2026'],['Foghat','Blue Note Hawaii','Honolulu, HI','Saturday','2/7/2026','7:00 PM','7286648','Foghat-2-7-2026'],['Foghat','Blue Note Hawaii','Honolulu, HI','Sunday','2/8/2026','6:30 PM','7286647','Foghat-2-8-2026'],['Foghat','The Guild Theatre - Menlo Park','Menlo Park, CA','Friday','2/13/2026','8:00 PM','7560379','Foghat-2-13-2026'],['Foghat with Head East','Event Center at Rhythm City Casino Resort','Davenport, IA','Saturday','3/14/2026','7:00 PM','7469064','Foghat-with-Head-East-3-14-2026'],['Foghat','Hard Rock Live - Mississippi','Biloxi, MS','Friday','4/10/2026','8:00 PM','7490678','Foghat-4-10-2026'],['Foghat','International Westgate Theater At Westgate Las Vegas Resort & Casino','Las Vegas, NV','Saturday','4/25/2026','7:00 PM','7426550','Foghat-4-25-2026'],['Foghat & Nazareth','Symphony Hall At DECC','Duluth, MN','Thursday','4/30/2026','7:00 PM','7583722','Foghat---Nazareth-4-30-2026'],['Foghat & Nazareth','Family Arena','Saint Charles, MO','Saturday','5/2/2026','7:00 PM','7488022','Foghat---Nazareth-5-2-2026'],['Foghat & Nazareth','Treasure Island Event Center - MN','Welch, MN','Friday','5/8/2026','8:00 PM','7524520','Foghat---Nazareth-5-8-2026']],'foghat','http://www.ticketnetwork.com/en/search/?text=foghat');