// JavaScript Document

function validateZip() {
	zip = document.getElementById("zip").value;
	if (zip.length != 5)
	{
		alert("Please enter a valid zip code.");
		return false;
	}
	return true;
}

function validateZipSmall() {
	zip = document.getElementById("zipSmall").value;
	if (zip.length != 5)
	{
		alert("Please enter a valid zip code.");
		return false;
	}
	return true;
}

function validateZipSmallTop() {
	zip = document.getElementById("zipSmallTop").value;
	if (zip.length != 5)
	{
		alert("Please enter a valid zip code.");
		return false;
	}
	return true;
}