function CheckForm()
{
	var canSubmit = true;
	var checkForm = document.contactform;

	if (canSubmit && checkForm.firstname.value == "")
	{
		alert("Please fill in your First Name");
		checkForm.firstname.focus();
		canSubmit = false;
	}

	if (canSubmit && checkForm.lastname.value == "")
	{
		alert("Please fill in your Last Name");
		checkForm.lastname.focus();
		canSubmit = false;
	}

	if (canSubmit && checkForm.address1.value == "")
	{
		alert("Please fill in your Street Address");
		checkForm.address1.focus();
		canSubmit = false;
	}

	if (canSubmit && checkForm.city.value == "")
	{
		alert("Please fill in your City");
		checkForm.city.focus();
		canSubmit = false;
	}

	if (canSubmit && checkForm.state.value == "")
	{
		alert("Please fill in your State");
		checkForm.state.focus();
		canSubmit = false;
	}

	if (canSubmit && checkForm.zip.value == "")
	{
		alert("Please fill in your Zip");
		checkForm.zip.focus();
		canSubmit = false;
	}

	if (canSubmit && (document.getElementById('phone1').value == "" || document.getElementById('phone2').value == "" || document.getElementById('phone3').value == ""))
	{
		alert("Please fill in your Phone Number");
		document.getElementById('phone1').focus();
		canSubmit = false;
	}
	return canSubmit;
}

