//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
| " +
row[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ this.linkText+ " |
";
},
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,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.CreateTable([['Bill Engvall','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Sunday','4/12/2026','6:30 PM','7608600','Bill-Engvall-4-12-2026'],['Bruce Hornsby And The Noisemakers','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Friday','4/17/2026','7:30 PM','7786642','Bruce-Hornsby-And-The-Noisemakers-4-17-2026'],['Peppa Pig's My First Concert','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','4/18/2026','3:30 PM','7608602','Peppa-Pig-s-My-First-Concert-4-18-2026'],['Marc Martel's One Vision of Queen','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','5/9/2026','7:30 PM','7786643','Marc-Martel-s-One-Vision-of-Queen-5-9-2026'],['Josh Turner','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Friday','5/29/2026','7:30 PM','7759429','Josh-Turner-5-29-2026'],['John Waite & John Cafferty and The Beaver Brown Band','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','5/30/2026','7:30 PM','7786644','John-Waite---John-Cafferty-and-The-Beaver-Brown-Band-5-30-2026'],['Atlanta Rhythm Section','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','6/6/2026','6:30 PM','7786013','Atlanta-Rhythm-Section-6-6-2026'],['Everclear & Fastball','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','6/13/2026','7:30 PM','7786645','Everclear---Fastball-6-13-2026'],['Gladys Knight','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','6/20/2026','6:30 PM','7786646','Gladys-Knight-6-20-2026'],['Bret Michaels','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','6/27/2026','7:30 PM','7786006','Bret-Michaels-6-27-2026'],['Departure - Tribute To Journey','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','7/11/2026','7:30 PM','7786009','Departure---Tribute-To-Journey-7-11-2026'],['Pat Benatar & Neil Giraldo','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Friday','8/7/2026','7:30 PM','7786647','Pat-Benatar---Neil-Giraldo-8-7-2026'],['Face 2 Face: Billy Joel & Elton John Tribute','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Friday','9/11/2026','7:30 PM','7786014','Face-2-Face--Billy-Joel---Elton-John-Tribute-9-11-2026'],['Little Feat','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Saturday','9/12/2026','7:30 PM','7785978','Little-Feat-9-12-2026'],['Collective Soul','Frederick Brown Jr Amphitheatre','Peachtree City, GA','Sunday','9/13/2026','6:30 PM','7786005','Collective-Soul-9-13-2026']],'Frederick Brown Jr. Amphitheater','http://www.ticketnetwork.com/ticket/Frederick-Brown-Jr.-Amphitheater-events.aspx');