//
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-01B
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([['Vanderbilt Commodores vs. Georgia Bulldogs','Hawkins Field','Nashville, TN','Saturday','4/19/2025','2:00 PM','6707658','Vanderbilt-Commodores-vs--Georgia-Bulldogs-4-19-2025'],['Clemson Tigers vs. Georgia Bulldogs','Doug Kingsmore Stadium','Clemson, SC','Tuesday','4/22/2025','8:00 PM','6824437','Clemson-Tigers-vs--Georgia-Bulldogs-4-22-2025'],['Georgia Bulldogs vs. Oklahoma Sooners','Foley Field','Athens, GA','Thursday','4/24/2025','6:00 PM','6818802','Georgia-Bulldogs-vs--Oklahoma-Sooners-4-24-2025'],['Georgia Bulldogs vs. Oklahoma Sooners','Foley Field','Athens, GA','Friday','4/25/2025','6:00 PM','6707438','Georgia-Bulldogs-vs--Oklahoma-Sooners-4-25-2025'],['Georgia Bulldogs vs. Oklahoma Sooners','Foley Field','Athens, GA','Saturday','4/26/2025','12:00 PM','6707439','Georgia-Bulldogs-vs--Oklahoma-Sooners-4-26-2025'],['Georgia Bulldogs vs. Kennesaw State Owls','Foley Field','Athens, GA','Tuesday','4/29/2025','3:00 PM','6818805','Georgia-Bulldogs-vs--Kennesaw-State-Owls-4-29-2025'],['Missouri Tigers vs. Georgia Bulldogs','Taylor Stadium','Columbia, MO','Friday','5/2/2025','6:00 PM','6707523','Missouri-Tigers-vs--Georgia-Bulldogs-5-2-2025'],['Missouri Tigers vs. Georgia Bulldogs','Taylor Stadium','Columbia, MO','Saturday','5/3/2025','7:00 PM','6707524','Missouri-Tigers-vs--Georgia-Bulldogs-5-3-2025'],['Missouri Tigers vs. Georgia Bulldogs','Taylor Stadium','Columbia, MO','Sunday','5/4/2025','1:00 PM','6707525','Missouri-Tigers-vs--Georgia-Bulldogs-5-4-2025'],['Alabama Crimson Tide vs. Georgia Bulldogs','Sewell Thomas Stadium','Tuscaloosa, AL','Friday','5/9/2025','6:00 PM','6707239','Alabama-Crimson-Tide-vs--Georgia-Bulldogs-5-9-2025'],['Alabama Crimson Tide vs. Georgia Bulldogs','Sewell Thomas Stadium','Tuscaloosa, AL','Saturday','5/10/2025','4:00 PM','6707240','Alabama-Crimson-Tide-vs--Georgia-Bulldogs-5-10-2025'],['Alabama Crimson Tide vs. Georgia Bulldogs','Sewell Thomas Stadium','Tuscaloosa, AL','Sunday','5/11/2025','1:00 PM','6707241','Alabama-Crimson-Tide-vs--Georgia-Bulldogs-5-11-2025'],['Georgia Bulldogs vs. Texas A&M Aggies','Foley Field','Athens, GA','Thursday','5/15/2025','6:00 PM','6707441','Georgia-Bulldogs-vs--Texas-A-M-Aggies-5-15-2025'],['Georgia Bulldogs vs. Texas A&M Aggies','Foley Field','Athens, GA','Friday','5/16/2025','6:00 PM','6707442','Georgia-Bulldogs-vs--Texas-A-M-Aggies-5-16-2025'],['Georgia Bulldogs vs. Texas A&M Aggies','Foley Field','Athens, GA','Saturday','5/17/2025','2:00 PM','6707443','Georgia-Bulldogs-vs--Texas-A-M-Aggies-5-17-2025']],'Georgia Bulldogs Baseball','http://www.ticketnetwork.com/en/search/?text=Georgia%20Bulldogs%20Baseball');