//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "Tickets",
tixUrl : "https://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[3] +" "+"" +
row[4] + " "+"" +
row[5] + " | "+"" +
row[0] +" | " +
row[1] +" " +
row[2] +" | "+""+ 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([['Slum Village','The Crowbar','Tampa, FL','Sunday','7/6/2025','8:00 PM','7245629','Slum-Village-7-6-2025'],['Planning For Burial','The Crowbar','Tampa, FL','Tuesday','7/15/2025','7:00 PM','7096026','Planning-For-Burial-7-15-2025'],['Maye','The Crowbar','Tampa, FL','Friday','7/18/2025','7:00 PM','7085426','Maye-7-18-2025'],['Bear Ghost','The Crowbar','Tampa, FL','Saturday','7/26/2025','8:00 PM','7172074','Bear-Ghost-7-26-2025'],['Yot Club','The Crowbar','Tampa, FL','Sunday','8/10/2025','7:00 PM','7124397','Yot-Club-8-10-2025'],['Mystery Skulls','The Crowbar','Tampa, FL','Wednesday','8/20/2025','7:00 PM','7081310','Mystery-Skulls-8-20-2025'],['Phoneboy','The Crowbar','Tampa, FL','Thursday','8/21/2025','7:30 PM','7171563','Phoneboy-8-21-2025'],['Oso Oso','The Crowbar','Tampa, FL','Wednesday','9/10/2025','8:00 PM','7174882','Oso-Oso-9-10-2025'],['Rio Da Yung OG','The Crowbar','Tampa, FL','Thursday','9/11/2025','7:00 PM','6927564','Rio-Da-Yung-OG-9-11-2025'],['Maris & Caroline Kingsbury','The Crowbar','Tampa, FL','Sunday','9/21/2025','8:00 PM','7192726','Maris---Caroline-Kingsbury-9-21-2025'],['Mico','The Crowbar','Tampa, FL','Thursday','9/25/2025','8:00 PM','7166306','Mico-9-25-2025'],['Novulent','The Crowbar','Tampa, FL','Wednesday','10/1/2025','7:00 PM','7242021','Novulent-10-1-2025'],['Graham Barham','The Crowbar','Tampa, FL','Friday','10/10/2025','8:00 PM','7194516','Graham-Barham-10-10-2025'],['Hobo Johnson and The Lovemakers','The Crowbar','Tampa, FL','Wednesday','10/15/2025','8:00 PM','7204499','Hobo-Johnson-and-The-Lovemakers-10-15-2025'],['Dogpark','The Crowbar','Tampa, FL','Thursday','10/23/2025','8:00 PM','7218334','Dogpark-10-23-2025'],['The Haunt - Show','The Crowbar','Tampa, FL','Thursday','10/30/2025','7:00 PM','7196974','The-Haunt---Show-10-30-2025'],['French Police','The Crowbar','Tampa, FL','Monday','11/3/2025','7:00 PM','7154739','French-Police-11-3-2025'],['Sun Room','The Crowbar','Tampa, FL','Tuesday','11/4/2025','8:00 PM','7216564','Sun-Room-11-4-2025'],['Jonah Marais','The Crowbar','Tampa, FL','Tuesday','11/11/2025','7:00 PM','7196112','Jonah-Marais-11-11-2025']],'Crowbar Tampa','https://www.ticketnetwork.com/ticket/Crowbar-Tampa-events.aspx');