//
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 t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
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 newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Vince Gill','Kirby Center for the Performing Arts','Wilkes Barre, PA','Friday','5/9/2025','7:30 PM','6996127','Vince-Gill-5-9-2025'],['Vince Gill','Santander Performing Arts Center','Reading, PA','Saturday','5/10/2025','7:30 PM','6996129','Vince-Gill-5-10-2025'],['Vince Gill','The Lyric Baltimore','Baltimore, MD','Thursday','5/15/2025','7:30 PM','6996161','Vince-Gill-5-15-2025'],['Vince Gill','Toyota Oakdale Theatre','Wallingford, CT','Friday','5/16/2025','7:30 PM','6996132','Vince-Gill-5-16-2025'],['Vince Gill','Orpheum Theatre - Boston','Boston, MA','Saturday','5/17/2025','7:30 PM','6996133','Vince-Gill-5-17-2025'],['Vince Gill','Orpheum Theatre - Minneapolis','Minneapolis, MN','Thursday','5/22/2025','7:30 PM','6996135','Vince-Gill-5-22-2025'],['Vince Gill','The Chicago Theatre','Chicago, IL','Friday','5/23/2025','7:30 PM','6996137','Vince-Gill-5-23-2025'],['Vince Gill','Riverside Theater - WI','Milwaukee, WI','Saturday','5/24/2025','7:30 PM','6996159','Vince-Gill-5-24-2025'],['Vince Gill','Paradise Cove At River Spirit','Tulsa, OK','Thursday','5/29/2025','8:00 PM','6996164','Vince-Gill-5-29-2025'],['Vince Gill','Lucas Oil Live At WinStar Casino','Thackerville, OK','Friday','5/30/2025','8:00 PM','6996200','Vince-Gill-5-30-2025']],'Vince Gill','https://www.ticketnetwork.com');