//
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-03A
TN_Widget.CreateTable([['LoveSong - A Tribute to The Cure','State Theatre - VA','Falls Church, VA','Thursday','3/26/2026','8:00 PM','7728382','LoveSong---A-Tribute-to-The-Cure-3-26-2026'],['BCIC National Step Show Competition','Virginia State University - Multi-Purpose Center','Petersburg, VA','Friday','3/27/2026','8:00 PM','7422733','BCIC-National-Step-Show-Competition-3-27-2026'],['The Warped Tour Band','State Theatre - VA','Falls Church, VA','Friday','3/27/2026','8:30 PM','7711618','The-Warped-Tour-Band-3-27-2026'],['Christopher Titus','State Theatre - VA','Falls Church, VA','Friday','4/3/2026','8:30 PM','7370047','Christopher-Titus-4-3-2026'],['Grateful Dub - Grateful Dead Tribute','State Theatre - VA','Falls Church, VA','Saturday','4/11/2026','8:30 PM','7728390','Grateful-Dub---Grateful-Dead-Tribute-4-11-2026'],['Abacab - The Music of Genesis, Phil Collins & Peter Gabriel','State Theatre - VA','Falls Church, VA','Friday','5/1/2026','8:30 PM','7728389','Abacab---The-Music-of-Genesis--Phil-Collins---Peter-Gabriel-5-1-2026'],['Misil Stereo','State Theatre - VA','Falls Church, VA','Friday','5/22/2026','8:30 PM','7728388','Misil-Stereo-5-22-2026'],['Here Come The Mummies','State Theatre - VA','Falls Church, VA','Friday','6/5/2026','8:30 PM','7774903','Here-Come-The-Mummies-6-5-2026'],['Roger Clyne And The Peacemakers','State Theatre - VA','Falls Church, VA','Wednesday','6/24/2026','8:00 PM','7784918','Roger-Clyne-And-The-Peacemakers-6-24-2026'],['Pandora's Box - Aerosmith Tribute Band','State Theatre - VA','Falls Church, VA','Friday','7/17/2026','8:30 PM','7728391','Pandora-s-Box---Aerosmith-Tribute-Band-7-17-2026'],['Elefante','State Theatre - VA','Falls Church, VA','Thursday','9/3/2026','8:00 PM','7370048','Elefante-9-3-2026']],'State Theatre Virginia','https://www.ticketnetwork.com/ticket/State-Theatre-Virginia-events.aspx');