if (document.cookie.indexOf("Zip=") == -1) {
	document.writeln("<FORM METHOD='GET' ACTION='/cgi-bin/hurcdist.pl'>");
	document.writeln("<FONT COLOR=RED><B>Track the storms relative to your location</B></FONT><BR>");
	document.writeln("Enter your US zip code <INPUT TYPE='TEXT' NAME='zip' MAXLENGTH=5 SIZE=5>");
	document.writeln("<INPUT TYPE='SUBMIT' VALUE='Submit'><BR></FORM><BR>");
} else {
	var temp = document.cookie.indexOf("City=");
	var past = document.cookie.indexOf(";", temp);
	if (past == -1) { past = document.cookie.length; }
	var city = document.cookie.substr(temp + 5, past - (temp + 5));
	if (temp != -1) {
		document.writeln(city + " is safe for now. ");
		document.writeln("<FONT SIZE=1><A HREF='/cgi-bin/hurcdist.pl'>Reset your location</A></FONT><BR>");
	}
}
if (document.cookie.indexOf("Lat=10;") != -1 && document.cookie.indexOf("Lon=-55;") != -1) {
	document.cookie = "Lat=; Path=/; Domain=.searchnc.com;";
	document.cookie = "Lon=; Path=/; Domain=.searchnc.com;";
	document.cookie = "Zip=; Path=/; Domain=.searchnc.com;";
	document.cookie = "City=; Path=/; Domain=.searchnc.com;";
}

