//
var TN_Widget = function() {
return {
CreateEventRow : function(row, isAlt) {
return "
" +
row[3] + " " +
row[4] + " " +
row[5] + " | " +
row[0] + " | " +
row[1] + " " +
row[2] + " | Tickets |
";
},
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;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-02A
TN_Widget.CreateTable([['Brit Floyd','King Center For The Performing Arts','Melbourne, FL','Sunday','5/18/2025','8:00 PM','7045210','Brit-Floyd-5-18-2025'],['The Dave Matthews Tribute Band','Debauchery','Melbourne, FL','Wednesday','5/21/2025','6:00 PM','6954692','The-Dave-Matthews-Tribute-Band-5-21-2025'],['Ron White','King Center For The Performing Arts','Melbourne, FL','Saturday','5/24/2025','8:00 PM','6881738','Ron-White-5-24-2025'],['Bear Hands','Debauchery','Melbourne, FL','Saturday','6/14/2025','6:00 PM','7060002','Bear-Hands-6-14-2025'],['Authority Zero','Debauchery','Melbourne, FL','Saturday','6/21/2025','7:00 PM','7037848','Authority-Zero-6-21-2025'],['Kyle Smith','Debauchery','Melbourne, FL','Saturday','6/28/2025','6:00 PM','7052792','Kyle-Smith-6-28-2025'],['Brian Kelley','King Center For The Performing Arts','Melbourne, FL','Saturday','8/2/2025','8:00 PM','7119930','Brian-Kelley-8-2-2025'],['Keith Urban','Rod Laver Arena','Melbourne, Australia','Monday','8/25/2025','TBD','6688933','Keith-Urban-8-25-2025'],['Keith Urban','Rod Laver Arena','Melbourne, Australia','Tuesday','8/26/2025','TBD','6688934','Keith-Urban-8-26-2025'],['Rick Springfield & Richard Marx','King Center For The Performing Arts','Melbourne, FL','Sunday','10/5/2025','7:30 PM','6820060','Rick-Springfield---Richard-Marx-10-5-2025'],['Oasis','Marvel Stadium','Melbourne, Australia','Friday','10/31/2025','5:00 PM','6761687','Oasis-10-31-2025'],['Oasis','Marvel Stadium','Melbourne, Australia','Saturday','11/1/2025','5:00 PM','6761688','Oasis-11-1-2025'],['Oasis','Marvel Stadium','Melbourne, Australia','Tuesday','11/4/2025','5:00 PM','6769764','Oasis-11-4-2025'],['Metallica','Marvel Stadium','Melbourne, Australia','Saturday','11/8/2025','5:00 PM','6789317','Metallica-11-8-2025'],['Satsang','Debauchery','Melbourne, FL','Friday','11/14/2025','6:00 PM','7059943','Satsang-11-14-2025'],['Lady Gaga','Marvel Stadium','Melbourne, Australia','Friday','12/5/2025','7:30 PM','7091218','Lady-Gaga-12-5-2025'],['The Fab Four - The Ultimate Tribute','King Center For The Performing Arts','Melbourne, FL','Thursday','12/11/2025','7:30 PM','7094207','The-Fab-Four---The-Ultimate-Tribute-12-11-2025'],['The Weeknd','Marvel Stadium','Melbourne, Australia','Friday','12/1/2073','12:00 AM','5904258','The-Weeknd-12-1-2073'],['The Weeknd','Marvel Stadium','Melbourne, Australia','Monday','12/4/2073','5:00 PM','5915674','The-Weeknd-12-4-2073'],['The Weeknd','Marvel Stadium','Melbourne, Australia','Tuesday','12/5/2073','12:00 AM','6039284','The-Weeknd-12-5-2073']],'Melbourne Concert','http://www.ticketnetwork.com/ticket/Melbourne-Concert-events.aspx');