//
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([['Blippi Live','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Wednesday','3/25/2026','6:00 PM','7583433','Blippi-Live-3-25-2026'],['Dorrance Dance','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Saturday','3/28/2026','8:00 PM','7355435','Dorrance-Dance-3-28-2026'],['Samara Joy','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Sunday','3/29/2026','7:00 PM','7355436','Samara-Joy-3-29-2026'],['The Great Gatsby - Theatrical Production','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Tuesday','3/31/2026','7:30 PM','7116569','The-Great-Gatsby---Theatrical-Production-3-31-2026'],['The Great Gatsby - Theatrical Production','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Wednesday','4/1/2026','7:30 PM','7116570','The-Great-Gatsby---Theatrical-Production-4-1-2026'],['The Great Gatsby - Theatrical Production','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Thursday','4/2/2026','7:30 PM','7116571','The-Great-Gatsby---Theatrical-Production-4-2-2026'],['The Great Gatsby - Theatrical Production','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Friday','4/3/2026','8:00 PM','7116572','The-Great-Gatsby---Theatrical-Production-4-3-2026'],['The Great Gatsby - Theatrical Production','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Saturday','4/4/2026','2:00 PM','7116574','The-Great-Gatsby---Theatrical-Production-4-4-2026'],['The Great Gatsby - Theatrical Production','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Saturday','4/4/2026','8:00 PM','7116573','The-Great-Gatsby---Theatrical-Production-4-4-2026'],['The Great Gatsby - Theatrical Production','Peace Concert Hall At The Peace Center - SC','Greenville, SC','Sunday','4/5/2026','1:00 PM','7116575','The-Great-Gatsby---Theatrical-Production-4-5-2026']],'Peace Concert Hall Greenville','http://www.ticketnetwork.com/en/search/?text=Peace%20Concert%20Hall%20Greenville');