//
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-02A
TN_Widget.CreateTable([['The Watkins Family Hour','Largo at the Coronet','Los Angeles, CA','Friday','8/7/2026','8:00 PM','8116376','The-Watkins-Family-Hour-8-7-2026'],['Anthony Jeselnik','Largo at the Coronet','Los Angeles, CA','Wednesday','8/12/2026','8:00 PM','8116371','Anthony-Jeselnik-8-12-2026'],['Patton Oswalt','Largo at the Coronet','Los Angeles, CA','Sunday','8/16/2026','8:00 PM','8116374','Patton-Oswalt-8-16-2026'],['Anthony Jeselnik','Largo at the Coronet','Los Angeles, CA','Tuesday','9/8/2026','8:00 PM','8116372','Anthony-Jeselnik-9-8-2026'],['Patton Oswalt','Largo at the Coronet','Los Angeles, CA','Sunday','9/20/2026','8:00 PM','8116375','Patton-Oswalt-9-20-2026'],['Tig Notaro','Largo at the Coronet','Los Angeles, CA','Friday','9/25/2026','8:00 PM','8116377','Tig-Notaro-9-25-2026'],['Graham Barham','Cowboys Dance Hall - Largo','Largo, FL','Saturday','9/26/2026','7:00 PM','8062338','Graham-Barham-9-26-2026'],['Tig Notaro','Largo at the Coronet','Los Angeles, CA','Saturday','10/10/2026','8:00 PM','8154006','Tig-Notaro-10-10-2026'],['Phoebe Robinson','Largo at the Coronet','Los Angeles, CA','Thursday','10/22/2026','7:30 PM','7837295','Phoebe-Robinson-10-22-2026'],['Two Dykes and a Mic','Largo at the Coronet','Los Angeles, CA','Wednesday','11/4/2026','8:00 PM','8059788','Two-Dykes-and-a-Mic-11-4-2026'],['Tig Notaro','Largo at the Coronet','Los Angeles, CA','Friday','11/6/2026','8:00 PM','8154007','Tig-Notaro-11-6-2026'],['In Conversation with Murray Hill','Largo at the Coronet','Los Angeles, CA','Wednesday','11/11/2026','8:00 PM','8154561','In-Conversation-with-Murray-Hill-11-11-2026'],['Tig Notaro','Largo at the Coronet','Los Angeles, CA','Friday','12/11/2026','8:00 PM','8154008','Tig-Notaro-12-11-2026']],'Largo LA','http://www.ticketnetwork.com/ticket/Largo-LA-events.aspx');