/*-------------------------------------------------
This simple bit of code deletes the Exient Cookie when you click the logo to return home. 
The cookie controls whether the splash screen pops up when you first come to the site. We need the propensity to allow the user
to view the splash if they want to, without it getting in the way of regular users.

The cookie name=value pair should be the same as in the main index file.
exientcookie = "FALSE"
-------------------------------------------------*/

function cookie_kill()
{
	var exdate = new Date();
	document.cookie = "exientcookie" + "=" + "FALSE" + ";expires=" + exdate.toGMTString() + ";path=/";
}

