//
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([['The Warped Tour Band','Mulcahys','Wantagh, NY','Friday','5/16/2025','8:00 PM','7051259','The-Warped-Tour-Band-5-16-2025'],['The Warped Tour Band','Suffolk Theater','Riverhead, NY','Friday','5/23/2025','8:00 PM','7082233','The-Warped-Tour-Band-5-23-2025'],['Warped Studio: Viva Las Vegas','Weill Center For The Performing Arts','Sheboygan, WI','Saturday','5/31/2025','12:00 PM','7105381','Warped-Studio--Viva-Las-Vegas-5-31-2025'],['Warped Studio: Viva Las Vegas','Weill Center For The Performing Arts','Sheboygan, WI','Saturday','5/31/2025','6:00 PM','7105776','Warped-Studio--Viva-Las-Vegas-5-31-2025'],['The Warped Tour Band','Bottle & Cork','Dewey Beach, DE','Friday','6/6/2025','8:30 PM','7033603','The-Warped-Tour-Band-6-6-2025'],['The Warped Tour Band','Tally Ho Theater','Leesburg, VA','Thursday','6/12/2025','7:30 PM','7070432','The-Warped-Tour-Band-6-12-2025'],['The Warped Tour Band','Mulcahys','Wantagh, NY','Friday','6/13/2025','8:00 PM','7098461','The-Warped-Tour-Band-6-13-2025'],['Vans Warped Tour: Bowling for Soul & Simple Plan - 2 Day Pass','RFK Stadium Festival Grounds','Washington, DC','Saturday','6/14/2025','TBD','6770860','Vans-Warped-Tour--Bowling-for-Soul---Simple-Plan---2-Day-Pass-6-14-2025'],['The Warped Tour Band','Six String Grill and Stage','Foxborough, MA','Friday','6/20/2025','9:00 PM','7100789','The-Warped-Tour-Band-6-20-2025'],['Vans Warped Tour: Bowling for Soup & Miss May I - 2 Day Pass','Long Beach Shoreline Waterfront','Long Beach, CA','Saturday','7/26/2025','TBD','6770862','Vans-Warped-Tour--Bowling-for-Soup---Miss-May-I---2-Day-Pass-7-26-2025'],['The Warped 2Ks Band','Madame Lou's','Seattle, WA','Saturday','8/16/2025','6:30 PM','7033344','The-Warped-2Ks-Band-8-16-2025'],['Warped Band - Tribute to Warped Tour','Amos' Southend','Charlotte, NC','Friday','8/22/2025','8:30 PM','7141211','Warped-Band---Tribute-to-Warped-Tour-8-22-2025'],['Vans Warped Tour: Chandler Leighton & Miss May I - 2 Day Pass','Camping World Stadium Campus','Orlando, FL','Saturday','11/15/2025','TBD','6770861','Vans-Warped-Tour--Chandler-Leighton---Miss-May-I---2-Day-Pass-11-15-2025']],'Warped Tour','http://www.ticketnetwork.com/ticket/Warped-Tour-events.aspx');