// Created: January 6, 2010 By Carol On'
// Updated: January 6, 2010 CO
// Go Live: June 2010 CO

function getCookie(name)
{
	var cookies = document.cookie;
	if (cookies.indexOf(name) != -1)
	{
		var startpos = cookies.indexOf(name)+name.length+1;
		var endpos = cookies.indexOf(";",startpos)-1;
		if (endpos == -2) endpos = cookies.length;
		return unescape(cookies.substring(startpos,endpos+1));
	}
	else
	{
		return false; // the cookie couldn't be found! it was never set before, or it expired.
	}
}
 

//	alert('You have skipSplash cookie saved, your skipSplash cookie is: '+getCookie('skipSplash'))+''; 
//	alert(window.location);

	switch (getCookie('skipSplash')) 
	{
	 case 'public': {
		if (window.location == "http://www.agd.org/splash/") 
		{	window.location = "http://www.agd.org/link/?lid=2557"; }
		else window.location = "http://www.agd.org/splash/";
	 	}
		break;
	 case 'student': {
		if (window.location == "http://www.agd.org/splash/") 
		{	window.location = "http://www.agd.org/link/?lid=2556"; }
		else window.location = "http://www.agd.org/splash/";
	 }
		break;
	 case 'dental': {
		if (window.location == "http://www.agd.org/splash/") 
		{	window.location = "http://www.agd.org/link/?lid=2555"; }
		else window.location = "http://www.agd.org/splash/";
	 }
		break;
	 default: { 
	//	window.location = "http://www.agd.org/splash/";
		}
	}
	


	
