<?php	

	//Authored By Waylan Taber

	//Check to see if they have a cookie
	if(empty($userzip))	{
	
		//No cookie - proceed to provide zip
		header("Location: providezip.php");
	
	} else {
	
		//Cookie Present - proceed to weather content
		header("Location: index.php");
		
	}	

?>