//
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-01A
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([['Poppy','Worcester Palladium','Worcester, MA','Tuesday','9/2/2025','7:00 PM','7223570','Poppy-9-2-2025'],['Poppy','Wellmont Theatre','Montclair, NJ','Thursday','9/4/2025','8:00 PM','7221491','Poppy-9-4-2025'],['Poppy','The National - VA','Richmond, VA','Friday','9/5/2025','7:00 PM','7221709','Poppy-9-5-2025'],['Poppy','Nevermore Hall','Baltimore, MD','Saturday','9/6/2025','8:00 PM','7221489','Poppy-9-6-2025'],['Poppy','House Of Blues - Myrtle Beach','North Myrtle Beach, SC','Monday','9/8/2025','7:00 PM','7221486','Poppy-9-8-2025'],['Poppy','The Ritz - Raleigh','Raleigh, NC','Tuesday','9/9/2025','7:00 PM','7221488','Poppy-9-9-2025'],['Poppy','Bogarts','Cincinnati, OH','Friday','9/12/2025','7:00 PM','7221485','Poppy-9-12-2025'],['Poppy','GLC Live at 20 Monroe','Grand Rapids, MI','Sunday','9/14/2025','7:00 PM','7221493','Poppy-9-14-2025'],['Poppy','Egyptian Room At Old National Centre','Indianapolis, IN','Monday','9/15/2025','8:00 PM','7221484','Poppy-9-15-2025'],['Poppy','Val Air Ballroom','West Des Moines, IA','Sunday','9/21/2025','8:00 PM','7221512','Poppy-9-21-2025'],['Poppy','Cains Ballroom','Tulsa, OK','Monday','9/22/2025','7:00 PM','7221511','Poppy-9-22-2025'],['Poppy','Uptown Theater - KC','Kansas City, MO','Tuesday','9/23/2025','7:00 PM','7221487','Poppy-9-23-2025'],['Poppy','Revel Entertainment Center','Albuquerque, NM','Thursday','9/25/2025','8:00 PM','7221513','Poppy-9-25-2025'],['Poppy','House Of Blues - Anaheim','Anaheim, CA','Saturday','9/27/2025','7:00 PM','7221483','Poppy-9-27-2025'],['Poppy','Majestic Ventura Theatre','Ventura, CA','Sunday','9/28/2025','8:00 PM','7221510','Poppy-9-28-2025'],['Poppy','The Observatory - North Park','San Diego, CA','Tuesday','9/30/2025','7:00 PM','7221492','Poppy-9-30-2025'],['Poppy','House Of Blues - Las Vegas','Las Vegas, NV','Thursday','10/2/2025','7:00 PM','7221482','Poppy-10-2-2025'],['KLAQ Rocks The Park: Scott Stapp, Poppy & Dead Poet Society','Southwest University Park','El Paso, TX','Saturday','10/4/2025','6:30 PM','7169876','KLAQ-Rocks-The-Park--Scott-Stapp--Poppy---Dead-Poet-Society-10-4-2025'],['Poppy','House Of Blues - Dallas','Dallas, TX','Monday','10/6/2025','7:00 PM','7221490','Poppy-10-6-2025']],'Poppy','http://www.ticketnetwork.com/en/search/?text=Poppy');