//
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-04B
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([['Pablo Cruise','Hard Rock Live - Sacramento','Wheatland, CA','Saturday','5/31/2025','8:00 PM','7030501','Pablo-Cruise-5-31-2025'],['The Yacht Rock Summer Tour: Firefall, Pablo Cruise, & Pure Prairie League','Florida Theatre Jacksonville','Jacksonville, FL','Sunday','7/20/2025','7:00 PM','7124530','The-Yacht-Rock-Summer-Tour--Firefall--Pablo-Cruise----Pure-Prairie-League-7-20-2025'],['Pablo Cruise','The Guild Theatre - Menlo Park','Menlo Park, CA','Friday','7/25/2025','8:00 PM','7100738','Pablo-Cruise-7-25-2025'],['Pablo Cruise','Mystic Theatre','Petaluma, CA','Saturday','7/26/2025','8:00 PM','7029940','Pablo-Cruise-7-26-2025'],['Pablo Cruise','Red Stage Fontana','Fontana, CA','Friday','9/12/2025','9:00 PM','7101890','Pablo-Cruise-9-12-2025'],['Pablo Cruise','Coach House - Capistrano','San Juan Capistrano, CA','Saturday','9/13/2025','8:00 PM','7072189','Pablo-Cruise-9-13-2025'],['Pablo Cruise','Belly Up Tavern','Solana Beach, CA','Sunday','9/14/2025','8:00 PM','7094963','Pablo-Cruise-9-14-2025']],'Pablo Cruise','http://www.ticketnetwork.com/en/search/?text=Pablo Cruise');