//
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-01A
TN_Widget.CreateTable([['Parliament Funkadelic ft. George Clinton','9:30 Club','Washington, DC','Wednesday','5/14/2025','8:00 PM','7009159','Parliament-Funkadelic-ft--George-Clinton-5-14-2025'],['Parliament Funkadelic & George Clinton','Keswick Theatre','Glenside, PA','Thursday','5/15/2025','8:00 PM','7024553','Parliament-Funkadelic---George-Clinton-5-15-2025'],['Parliament Funkadelic ft. George Clinton','District Music Hall','Norwalk, CT','Saturday','5/17/2025','8:00 PM','7008503','Parliament-Funkadelic-ft--George-Clinton-5-17-2025'],['Parliament Funkadelic ft. George Clinton','Citizens House Of Blues - Boston','Boston, MA','Sunday','5/18/2025','8:00 PM','7021362','Parliament-Funkadelic-ft--George-Clinton-5-18-2025'],['Parliament Funkadelic ft. George Clinton','Roxian Theatre','McKees Rocks, PA','Tuesday','5/20/2025','8:00 PM','7021363','Parliament-Funkadelic-ft--George-Clinton-5-20-2025'],['Parliament Funkadelic ft. George Clinton','Egyptian Room At Old National Centre','Indianapolis, IN','Wednesday','5/21/2025','8:00 PM','7021361','Parliament-Funkadelic-ft--George-Clinton-5-21-2025'],['Parliament Funkadelic ft. George Clinton','Uptown Theatre Minneapolis','Minneapolis, MN','Thursday','5/22/2025','8:00 PM','7021365','Parliament-Funkadelic-ft--George-Clinton-5-22-2025'],['Parliament Funkadelic ft. George Clinton','Steelhouse Omaha','Omaha, NE','Saturday','5/24/2025','7:00 PM','7021364','Parliament-Funkadelic-ft--George-Clinton-5-24-2025'],['Parliament Funkadelic ft. George Clinton','Stone Pony Summer Stage','Asbury Park, NJ','Sunday','6/29/2025','5:00 PM','7026063','Parliament-Funkadelic-ft--George-Clinton-6-29-2025'],['Parliament Funkadelic ft. George Clinton','Palladium Times Square','New York, NY','Friday','8/22/2025','8:00 PM','7147595','Parliament-Funkadelic-ft--George-Clinton-8-22-2025'],['Parliament Funkadelic & George Clinton','Blue Note Hawaii','Honolulu, HI','Thursday','9/25/2025','7:30 PM','7067500','Parliament-Funkadelic---George-Clinton-9-25-2025'],['Parliament Funkadelic & George Clinton','Blue Note Hawaii','Honolulu, HI','Friday','9/26/2025','7:30 PM','7067501','Parliament-Funkadelic---George-Clinton-9-26-2025'],['Parliament Funkadelic & George Clinton','Blue Note Hawaii','Honolulu, HI','Saturday','9/27/2025','7:30 PM','7067502','Parliament-Funkadelic---George-Clinton-9-27-2025'],['Parliament Funkadelic & George Clinton','Blue Note Hawaii','Honolulu, HI','Sunday','9/28/2025','7:30 PM','7067503','Parliament-Funkadelic---George-Clinton-9-28-2025']],'George Clinton','http://www.ticketnetwork.com/ticket/George-Clinton-events.aspx');