//
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([['Billy and The Box Kid','The Domino Room','Bend, OR','Friday','3/6/2026','8:00 PM','7747292','Billy-and-The-Box-Kid-3-6-2026'],['Jeff Miller and The Congregation','The Domino Room','Bend, OR','Saturday','3/14/2026','8:00 PM','7747300','Jeff-Miller-and-The-Congregation-3-14-2026'],['Possibly Irish','The Domino Room','Bend, OR','Sunday','3/15/2026','7:00 PM','7747293','Possibly-Irish-3-15-2026'],['Tanner Laws','The Domino Room','Bend, OR','Tuesday','3/17/2026','7:30 PM','7747299','Tanner-Laws-3-17-2026'],['The Lowest Pair','The Domino Room','Bend, OR','Thursday','3/19/2026','8:00 PM','7747294','The-Lowest-Pair-3-19-2026'],['Corb Lund','The Domino Room','Bend, OR','Tuesday','3/24/2026','8:00 PM','7539069','Corb-Lund-3-24-2026'],['Keenan Trevon','The Domino Room','Bend, OR','Sunday','3/29/2026','7:00 PM','7747298','Keenan-Trevon-3-29-2026'],['Overtime, Durte, Jake LaCoste, Wildcard & Shawn Paris','The Domino Room','Bend, OR','Thursday','4/2/2026','7:00 PM','7726541','Overtime--Durte--Jake-LaCoste--Wildcard---Shawn-Paris-4-2-2026'],['Green Jelly','The Domino Room','Bend, OR','Friday','4/3/2026','8:00 PM','7739463','Green-Jelly-4-3-2026'],['Dan Mangan','The Domino Room','Bend, OR','Sunday','4/12/2026','7:30 PM','7739458','Dan-Mangan-4-12-2026'],['Curtis Salgado','The Domino Room','Bend, OR','Friday','4/17/2026','8:00 PM','7747295','Curtis-Salgado-4-17-2026']],'Domino','http://www.ticketnetwork.com/en/search/?text=Domino');