//
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-03A
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([['Lotus Land - A Tribute to Rush','Blue Ocean Music Hall','Salisbury, MA','Friday','10/10/2025','8:00 PM','7255748','Lotus-Land---A-Tribute-to-Rush-10-10-2025'],['Lotus Land - A Tribute to Rush','Blue Ocean Music Hall','Salisbury, MA','Saturday','10/11/2025','8:00 PM','7255783','Lotus-Land---A-Tribute-to-Rush-10-11-2025'],['Lotus Land - A Tribute to Rush','Paramount Theater Hudson Valley','Peekskill, NY','Friday','10/17/2025','8:00 PM','7262418','Lotus-Land---A-Tribute-to-Rush-10-17-2025'],['Lotus Land - A Tribute to Rush','Live at the Ludlow Garage','Cincinnati, OH','Saturday','10/25/2025','7:30 PM','7040568','Lotus-Land---A-Tribute-to-Rush-10-25-2025'],['Lotus Juice','Ventura Music Hall','Ventura, CA','Saturday','11/8/2025','8:00 PM','7286331','Lotus-Juice-11-8-2025'],['Lotus Juice','Music Box - San Diego','San Diego, CA','Sunday','11/9/2025','8:00 PM','7286314','Lotus-Juice-11-9-2025'],['Lotus','Intersection','Grand Rapids, MI','Thursday','11/13/2025','8:00 PM','7384429','Lotus-11-13-2025'],['Lotus','Magic Stick','Detroit, MI','Friday','11/14/2025','8:00 PM','7385773','Lotus-11-14-2025'],['Lotus','Bottom Lounge','Chicago, IL','Saturday','11/15/2025','8:30 PM','7386228','Lotus-11-15-2025'],['Lotus Land - A Tribute to Rush','Levoy Theatre','Millville, NJ','Saturday','11/29/2025','8:00 PM','7338102','Lotus-Land---A-Tribute-to-Rush-11-29-2025'],['Lotus Land - A Tribute to Rush','Patchogue Theater For The Performing Arts','Patchogue, NY','Saturday','1/17/2026','8:00 PM','7288857','Lotus-Land---A-Tribute-to-Rush-1-17-2026'],['Lotus Land - A Tribute to Rush','Tupelo Music Hall','Derry, NH','Friday','2/6/2026','8:00 PM','7290201','Lotus-Land---A-Tribute-to-Rush-2-6-2026'],['Lotus Land - A Tribute to Rush','Tupelo Music Hall','Derry, NH','Saturday','2/7/2026','8:00 PM','7290202','Lotus-Land---A-Tribute-to-Rush-2-7-2026']],'lotus','http://www.ticketnetwork.com/en/search/?text=lotus');