function GetCookie(name){
	var cValue = '';
	if(document.cookie.length > 0){
		var cName = name +"=";
		var cBegin = document.cookie.indexOf(cName);
		var cEnd = 0;
		if( cBegin > -1 ){
			cBegin += cName.length;
			cEnd = document.cookie.indexOf(";", cBegin);
			if(cEnd < cBegin){
				cEnd = document.cookie.length;
			}
			cValue = document.cookie.substring(cBegin, cEnd);
			cValue = unescape(cValue);
		}
	}
	return(cValue);
}
function DeleteCookie(name){
	expireDate = new Date;
	expireDate.setDate( (expireDate.getDate() - 1) );
	document.cookie = name +"=Deleted;expires=" + expireDate.toGMTString();
}

function testForDemoCustom(URL)
{
	if(GetCookie("demo").length > 1)
	{
		alert("You are currently in demo mode.  Please enroll from the Home Banking Signon page.")
		window.location.href="https://www.knbt.com/onlineserv/HB/Signon.cgi";
	}
	else
	{
	window.location.href = URL;
	}
	
	return 0;
}
