<!--

var cookName = 'Gator-Boosters';
var destination = "http://www.gatorboosters.org/index-main.html";
var popupWin;
var cookVal = "true";
var home = 'http://www.gatorboosters.org';
var expyear = new Date();
expyear.setTime(expyear.getTime() + (365 * 24 * 60 * 60 * 1000));
//alert(expyear.toGMTString()); // CHANGE 365 to 95 for approx 3mos, uncomment first part to view expiration
function SetCookie(name,value,expires){
	if(name){
	cookieLife = (expires)? "; expires=" + expires.toGMTString() : "";
	document.cookie = name + "=" + value + cookieLife + ";path=/";
	}
window.location = destination;	
}
function getCookieVal(offset) {
	var endstr = document.cookie.indexOf(";",offset);
	if(endstr == -1) 
		endstr = document.cookie.length;
		return document.cookie.substring(offset,endstr);
}
function getCookie(name){
	var arg = name + "=";
	var alen = arg.length
	var clen = document.cookie.length;
	var i = 0;
	while(i < clen){
		var j = i + alen;
		if(document.cookie.substring(i,j) == arg)
		 return getCookieVal(j);
		      i = document.cookie.indexOf("",i) + 1;
		if(i == 0) break;
	}
return null;
}

if (getCookie(cookName) != null){
window.location = destination;
}
// End hiding -->
