// JavaScript Document


function validateZip(theForm) {
	
	if(theForm.zip.value == ""){
    alert("Please enter a zip code.");
	return false;
	}else{
	return true;
	}
}

function validateArea(theForm) {
	
	if(theForm.areacode.value == ""){
    alert("Please enter an area code.");
	return false;
	}else{
	return true;
	}
}

	