//
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([['The Martinez Brothers','Walter Where?House','Phoenix, AZ','Friday','2/6/2026','9:00 PM','7570734','The-Martinez-Brothers-2-6-2026'],['The Martinez Brothers','The Mission Ballroom','Denver, CO','Friday','2/13/2026','9:00 PM','7569004','The-Martinez-Brothers-2-13-2026'],['The Martinez Brothers','SILO Dallas','Dallas, TX','Saturday','2/21/2026','9:00 PM','7570735','The-Martinez-Brothers-2-21-2026'],['The Martinez Brothers','The Concourse Project','Austin, TX','Friday','3/6/2026','9:00 PM','7570736','The-Martinez-Brothers-3-6-2026'],['The Martinez Brothers','District Atlanta','Atlanta, GA','Saturday','3/7/2026','9:00 PM','7570523','The-Martinez-Brothers-3-7-2026'],['Tecate Pal Norte (Time: TBD): Guns N' Roses, Fabulosos Cadillacs & Kygo - Saturday','Fundidora Park','Monterrey, Mexico','Saturday','3/28/2026','2:00 PM','7557613','Tecate-Pal-Norte--Time--TBD---Guns-N--Roses--Fabulosos-Cadillacs---Kygo---Saturday-3-28-2026'],['The Martinez Brothers','Royale Boston','Boston, MA','Friday','4/10/2026','10:00 PM','7570733','The-Martinez-Brothers-4-10-2026'],['The Martinez Brothers','New City Gas','Montreal, Canada','Saturday','4/11/2026','10:00 PM','7572616','The-Martinez-Brothers-4-11-2026'],['The Martinez Brothers','Echostage','Washington, DC','Friday','4/17/2026','10:00 PM','7570441','The-Martinez-Brothers-4-17-2026'],['The Martinez Brothers','BauHaus Houston ','Houston, TX','Saturday','4/18/2026','5:00 PM','7572790','The-Martinez-Brothers-4-18-2026'],['The Martinez Brothers','Showbox SoDo','Seattle, WA','Friday','5/8/2026','9:00 PM','7570525','The-Martinez-Brothers-5-8-2026'],['The Martinez Brothers','Malkin Bowl - Stanley Park','Vancouver, Canada','Saturday','5/9/2026','6:00 PM','7570439','The-Martinez-Brothers-5-9-2026'],['The Martinez Brothers','Radius - IL','Chicago, IL','Friday','5/15/2026','10:00 PM','7570538','The-Martinez-Brothers-5-15-2026'],['The Martinez Brothers','The Ave Live','Philadelphia, PA','Saturday','5/16/2026','9:30 PM','7570537','The-Martinez-Brothers-5-16-2026'],['The Martinez Brothers','SummerStage in Central Park','New York, NY','Saturday','6/13/2026','6:00 PM','7566974','The-Martinez-Brothers-6-13-2026']],'The Martinez Brothers','http://www.ticketnetwork.com/en/search/?text=The%20Martinez%20Brothers');