
	// Standard cookie set function
	// Copyright, Mike 2005

	function SetCookie(cookieName, cookieValue, nDays) {
		var today = new Date();
		var expire = new Date();
		if ((nDays == null) || (nDays == 0)) nDays = 1;
		expire.setTime(today.getTime() + 3600000*24*nDays);
		document.cookie = cookieName + "=" + escape(cookieValue) + ";expires=" + expire.toGMTString();
	}

	// Internet browsers will support cookies and Javascript, bots will not - set an "ishuman" cookie so that
	// the error page can be graphical for humans and a minimal size version for bots.

	SetCookie("ishuman", true, 30);

