//
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([['Wallows','Channel 24','Sacramento, CA','Thursday','5/1/2025','7:30 PM','7016833','Wallows-5-1-2025'],['Wallows','Channel 24','Sacramento, CA','Friday','5/2/2025','8:00 PM','7010067','Wallows-5-2-2025'],['Wallows','The Espee - St. Paul Square','San Antonio, TX','Sunday','5/25/2025','7:00 PM','6923257','Wallows-5-25-2025'],['Wallows','GrindersKC','Kansas City, MO','Tuesday','5/27/2025','7:30 PM','6923212','Wallows-5-27-2025'],['Wallows','Everwise Amphitheater at White River State Park','Indianapolis, IN','Wednesday','5/28/2025','7:30 PM','6923260','Wallows-5-28-2025'],['Wallows','Iroquois Amphitheater','Louisville, KY','Friday','5/30/2025','7:30 PM','6923426','Wallows-5-30-2025'],['Wallows','KEMBA Live!','Columbus, OH','Saturday','5/31/2025','7:30 PM','6923255','Wallows-5-31-2025'],['Wallows','Jacobs Pavilion','Cleveland, OH','Sunday','6/1/2025','7:30 PM','6923254','Wallows-6-1-2025'],['Wallows','Terminal B At The Outer Harbor','Buffalo, NY','Tuesday','6/3/2025','7:00 PM','6923416','Wallows-6-3-2025'],['Wallows','Midway Lawn at Champlain Valley Expo','Essex Junction, VT','Wednesday','6/4/2025','8:00 PM','6924010','Wallows-6-4-2025'],['Wallows','Thompson's Point','Portland, ME','Friday','6/6/2025','7:30 PM','6923264','Wallows-6-6-2025'],['Wallows','Hartford HealthCare Amphitheater','Bridgeport, CT','Sunday','6/8/2025','7:30 PM','6923267','Wallows-6-8-2025'],['Wallows','Brown's Island','Richmond, VA','Tuesday','6/10/2025','7:00 PM','6923213','Wallows-6-10-2025'],['Wallows','Red Hat Amphitheater','Raleigh, NC','Wednesday','6/11/2025','7:30 PM','6923269','Wallows-6-11-2025'],['Wallows','Firefly Distillery','North Charleston, SC','Saturday','6/14/2025','7:00 PM','6923271','Wallows-6-14-2025'],['Wallows','Asheville Yards Amphitheater','Asheville, NC','Sunday','6/15/2025','7:00 PM','6923276','Wallows-6-15-2025']],'Wallows','http://www.ticketnetwork.com/ticket/Wallows-events.aspx');