//
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([['Grand Ole Opry: Carrie Underwood','Grand Ole Opry House','Nashville, TN','Tuesday','6/3/2025','7:00 PM','6762325','Grand-Ole-Opry--Carrie-Underwood-6-3-2025'],['Grand Ole Opry: Carrie Underwood','Grand Ole Opry House','Nashville, TN','Tuesday','6/3/2025','9:30 PM','6762326','Grand-Ole-Opry--Carrie-Underwood-6-3-2025'],['Voices of America Country Music Fest: Darius Rucker, Carrie Underwood, Hardy & Bailey Zimmerman - 4 Day Pass','Voice of America MetroPark','West Chester, OH','Thursday','8/7/2025','TBD','6909403','Voices-of-America-Country-Music-Fest--Darius-Rucker--Carrie-Underwood--Hardy---Bailey-Zimmerman---4-Day-Pass-8-7-2025'],['Voices of America Country Music Fest: Carrie Underwood, Shaboozey, Parmalee & Randall King - Friday (Time: TBD)','Voice of America MetroPark','West Chester, OH','Friday','8/8/2025','1:00 PM','6909399','Voices-of-America-Country-Music-Fest--Carrie-Underwood--Shaboozey--Parmalee---Randall-King---Friday--Time--TBD--8-8-2025'],['Carrie Underwood','Yaamava Theater at Yaamava Resort & Casino','Highland, CA','Friday','9/5/2025','8:00 PM','7108920','Carrie-Underwood-9-5-2025'],['Country Calling Festival: Carrie Underwood, Luke Bryan & Luke Combs - 3 Day Pass','Ocean City Inlet','Ocean City, MD','Friday','10/3/2025','TBD','7052189','Country-Calling-Festival--Carrie-Underwood--Luke-Bryan---Luke-Combs----3-Day-Pass-10-3-2025'],['Country Calling Festival: Carrie Underwood, Brooks and Dunn & Jon Pardi - Friday','Ocean City Inlet','Ocean City, MD','Friday','10/3/2025','12:00 PM','7062652','Country-Calling-Festival--Carrie-Underwood--Brooks-and-Dunn---Jon-Pardi---Friday-10-3-2025']],'Carrie Underwood','http://www.ticketnetwork.com/ticket/Carrie-Underwood-events.aspx');