	function valContact() {
		strName = document.getElementById("strName").value;
		strCompany = document.getElementById("strCompany").value;
		strPhone = document.getElementById("strPhone").value;
		strEmail = document.getElementById("strEmail").value;
		strMessage = document.getElementById("strMessage").value;
		bRespondByPhone = document.getElementsByName("strRespondBy")[0].checked;
		bRespondByEmail = document.getElementsByName("strRespondBy")[1].checked;
		strError = "You did not properly fill out the following fields:";

		if (!strName.length) strError = strError + "\nYour Name";
		if (bRespondByPhone && strPhone.length < 10) strError = strError + "\nPhone Number";
		if (bRespondByEmail && !strEmail.length) strError = strError + "\nEmail Address";
		if (!strMessage.length) strError = strError + "\nYour Message";

		if (strError.length > 51) {
			alert( strError );
			return false;
		}
	}
