//
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([['Van Morrison','Whitla Hall','Belfast, United Kingdom','Friday','2/21/2025','7:00 PM','6950615','Van-Morrison-2-21-2025'],['One Irish Rover: A Tribute to Van Morrison','Boot Barn Hall At Bourbon Brothers - GA','Gainesville, GA','Friday','2/21/2025','7:00 PM','6904832','One-Irish-Rover--A-Tribute-to-Van-Morrison-2-21-2025'],['Van Morrison','Whitla Hall','Belfast, United Kingdom','Saturday','2/22/2025','7:00 PM','6950616','Van-Morrison-2-22-2025'],['One Irish Rover: A Tribute to Van Morrison','House Of Blues - Myrtle Beach','North Myrtle Beach, SC','Saturday','3/8/2025','7:00 PM','6952710','One-Irish-Rover--A-Tribute-to-Van-Morrison-3-8-2025'],['The Irish Heartbeat - Tribute to Van Morrison','Raue Center For The Arts','Crystal Lake, IL','Saturday','3/15/2025','7:00 PM','6815948','The-Irish-Heartbeat---Tribute-to-Van-Morrison-3-15-2025'],['Beautiful Vision - A Tribute to Van Morrison','Evanston Space','Evanston, IL','Monday','3/17/2025','7:30 PM','6927174','Beautiful-Vision---A-Tribute-to-Van-Morrison-3-17-2025'],['Moondance - Van Morrison Tribute','Colonial Theatre - Keene','Keene, NH','Saturday','3/22/2025','7:30 PM','6525834','Moondance---Van-Morrison-Tribute-3-22-2025'],['Moondance - Van Morrison Tribute','Everett Theatre','Everett, WA','Saturday','5/3/2025','7:30 PM','6803885','Moondance---Van-Morrison-Tribute-5-3-2025'],['One Irish Rover: A Tribute to Van Morrison','Penns Peak','Jim Thorpe, PA','Friday','5/16/2025','8:00 PM','6952846','One-Irish-Rover--A-Tribute-to-Van-Morrison-5-16-2025'],['Moondance - Van Morrison Tribute','Norwood Theatre','Norwood, MA','Saturday','5/31/2025','7:30 PM','6876343','Moondance---Van-Morrison-Tribute-5-31-2025']],'van morrison','http://www.ticketnetwork.com/en/search/?text=van%20morrison');