//
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([['Purity Ring','Majestic Ventura Theatre','Ventura, CA','Monday','10/13/2025','8:00 PM','7264227','Purity-Ring-10-13-2025'],['DJ Pauly D','Majestic Ventura Theatre','Ventura, CA','Thursday','10/23/2025','8:00 PM','7238458','DJ-Pauly-D-10-23-2025'],['Bloodsuckers Ball','Majestic Ventura Theatre','Ventura, CA','Saturday','10/25/2025','8:00 PM','7310733','Bloodsuckers-Ball-10-25-2025'],['Pink Talking Fish - A Tribute to Pink Floyd, The Talking Heads & Phish','Majestic Ventura Theatre','Ventura, CA','Wednesday','10/29/2025','8:00 PM','7206659','Pink-Talking-Fish---A-Tribute-to-Pink-Floyd--The-Talking-Heads---Phish-10-29-2025'],['Spooky Rave','Majestic Ventura Theatre','Ventura, CA','Friday','10/31/2025','9:00 PM','7316670','Spooky-Rave-10-31-2025'],['Guerra De Chistes','Majestic Ventura Theatre','Ventura, CA','Friday','11/7/2025','8:00 PM','7463284','Guerra-De-Chistes-11-7-2025'],['The Aquabats!','Majestic Ventura Theatre','Ventura, CA','Saturday','11/15/2025','7:00 PM','7284247','The-Aquabats--11-15-2025'],['Kansas - The Band','Majestic Ventura Theatre','Ventura, CA','Wednesday','12/3/2025','8:00 PM','7401432','Kansas---The-Band-12-3-2025'],['The Liverpool Legends - Beatles Tribute','Majestic Ventura Theatre','Ventura, CA','Thursday','12/4/2025','7:30 PM','7425431','The-Liverpool-Legends---Beatles-Tribute-12-4-2025'],['The Vandals','Majestic Ventura Theatre','Ventura, CA','Friday','12/19/2025','8:00 PM','7436516','The-Vandals-12-19-2025'],['Trevor Wallace','Majestic Ventura Theatre','Ventura, CA','Saturday','1/17/2026','8:00 PM','7306443','Trevor-Wallace-1-17-2026'],['The Oldies Forever Tour','Majestic Ventura Theatre','Ventura, CA','Saturday','2/14/2026','8:00 PM','7286300','The-Oldies-Forever-Tour-2-14-2026']],'Ventura Theatre','http://www.ticketnetwork.com/ticket/Ventura-Theatre-events.aspx');