	function runningFlag()
		{
		// MAKE SURE COOKIES ARE SUPPORTED
		createCookie("testcookie","1",0);
		var x=readCookie("testcookie");
		eraseCookie("testcookie");
		
		if(x==null || x=="")
			{
			alert("The information input pages will not work unless cookies are activated.\n\nCookies for this site are not saved to disk and are deleted from memory when you close your browser.")
			location = "../index.htm";
			return false;
			}
		// LOAD THE RUNNING FLAT, IF THIS IS THE SIGN UP PAGE
		var x = "" + location;
		if(x.indexOf("haulers/signin.htm") != -1)
			{
			createCookie("hrunning",1,0)
			}

		// NOW SEE IF THE FLAG IS UP. IF NOT SEND THEM TO THE signup page
		var x = readCookie("hrunning");
		if(x == null || x == "")
			{
			alert("Please enter the information input pages through the sign-in page");
			location = "../haulers/signin.htm";
			}
			return false;			
		}

