//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var dateArray = row[4].split('/');
var date = months[dateArray[0]] + " " + dateArray[1];
var parking = row[0].split(':')[0]
if (parking !== "PARKING") {
return "
";
}
},
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,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newResults = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newResults.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newResults.join('') + '
';
} else
document.write('' + newResults.join('') + '
');
if(eventData.length >= 101 && kwds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.AddCss('//tn-widget.seatics.com/widget2Css/results-style-1.css');
TN_Widget.AddCss('//s3.amazonaws.com/ticketnetwork/fonts/TTNorms/TTNorms.css');
TN_Widget.CreateTable([['Collin Raye','The Grand Theatre - GA','Cartersville, GA','Saturday','3/14/2026','3:58 PM','7628761','Collin-Raye-3-14-2026'],['Collin Raye','Greenville Municipal Auditorium','Greenville, TX','Friday','3/20/2026','7:30 PM','7598086','Collin-Raye-3-20-2026'],['Collin Raye','Arlington Music Hall','Arlington, TX','Saturday','3/21/2026','7:30 PM','7522357','Collin-Raye-3-21-2026'],['Roots & Boots: Sammy Kershaw, Aaron Tippin & Collin Raye','Southern Kentucky Performing Arts Center','Bowling Green, KY','Friday','3/27/2026','7:30 PM','7629174','Roots---Boots--Sammy-Kershaw--Aaron-Tippin---Collin-Raye-3-27-2026'],['Roots & Boots: Sammy Kershaw, Aaron Tippin & Collin Raye','Castle Knoll Farms and Amphitheater','Paoli, IN','Saturday','6/20/2026','7:30 PM','7677739','Roots---Boots--Sammy-Kershaw--Aaron-Tippin---Collin-Raye-6-20-2026'],['90s Country Gold Series: Kathy Mattea, Collin Raye, & Pam Tillis','Five Flags Center - Theatre','Dubuque, IA','Saturday','6/20/2026','7:30 PM','7727489','90s-Country-Gold-Series--Kathy-Mattea--Collin-Raye----Pam-Tillis-6-20-2026'],['Roots & Boots: Sammy Kershaw, Aaron Tippin & Collin Raye','Crystal Grand Music Theatre','Lake Delton, WI','Saturday','11/21/2026','8:00 PM','7562380','Roots---Boots--Sammy-Kershaw--Aaron-Tippin---Collin-Raye-11-21-2026']],'collin raye','http://www.ticketnetwork.com/en/search/?text=collin%20raye');