function checkCookie(name)
{
	return (document.cookie && (document.cookie.indexOf(name) > -1));
}

function hasFlash()
{
	return (navigator.mimeTypes && 
          navigator.mimeTypes["application/x-shockwave-flash"] &&
          navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin);
}

function showSplash()
{
	var splash = document.getElementById('splash');

	if (splash) 
	{
		if (document.referrer.indexOf(document.domain) == -1)
		{
			splash.style.display = 'block';
		}
	}
	
}

function hideSplash()
{
	document.getElementById('splash').style.display = 'none';
	window.location.href = 'home.html';
}