// Copyright 2009 
/*
function getPage (theForm) {
	
	$Zipcode = theForm.Zipcode.value;
	if ($Zipcode.length < 5) {
		alert("Please double check that you entered the correct zip code.  Your zip code should be in a 5 digit format.");
		return false;
	}
	else {
		return true;
	}
}*/