//
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([['Chris Stapleton's All-American Road Show: Chris Stapleton & Molly Tuttle','California Mid-state Fair Grounds','Paso Robles, CA','Tuesday','7/14/2026','7:30 PM','7668717','Chris-Stapleton-s-All-American-Road-Show--Chris-Stapleton---Molly-Tuttle-7-14-2026'],['Old Dominion','California Mid-state Fair Grounds','Paso Robles, CA','Wednesday','7/15/2026','7:00 PM','7794215','Old-Dominion-7-15-2026'],['Lainey Wilson','California Mid-state Fair Grounds','Paso Robles, CA','Friday','7/17/2026','7:30 PM','7841863','Lainey-Wilson-7-17-2026'],['Eric Church','California Mid-state Fair Grounds','Paso Robles, CA','Saturday','7/18/2026','7:30 PM','7729674','Eric-Church-7-18-2026'],['Megadeth','California Mid-state Fair Grounds','Paso Robles, CA','Monday','7/20/2026','7:30 PM','7832923','Megadeth-7-20-2026'],['Howard Jones','California Mid-state Fair Grounds','Paso Robles, CA','Tuesday','7/21/2026','6:45 PM','7862657','Howard-Jones-7-21-2026'],['Treaty Oak Revival','California Mid-state Fair Grounds','Paso Robles, CA','Thursday','7/23/2026','7:30 PM','7826427','Treaty-Oak-Revival-7-23-2026'],['Three Dog Night','California Mid-state Fair Grounds','Paso Robles, CA','Friday','7/24/2026','7:30 PM','7926048','Three-Dog-Night-7-24-2026'],['Country Rodeo Finals','California Mid-state Fair Grounds','Paso Robles, CA','Saturday','7/25/2026','7:00 PM','7945739','Country-Rodeo-Finals-7-25-2026']],'Paso Robles Event Center','http://www.ticketnetwork.com/ticket/Paso-Robles-Event-Center-events.aspx');