function valid()
{
	if (pledgeform.phone.value == "")
	{
		window.alert("In order to properly process your request, you must provide your phone number.  Thank you!");
		pledgeform.phone.focus();
		pledgeform.phone.select();
		return false;
	}


	if (pledgeform.addy.value == "")
	{
		window.alert("In order to properly process your request, you must provide your street address.  Thank you!");
		pledgeform.addy.focus();
		pledgeform.addy.select();
		return false;
	}

	if (pledgeform.zip.value == "")
	{
		window.alert("In order to properly process your request, you must provide your City, State and zip code.  Thank you!");
		pledgeform.zip.focus();
		pledgeform.zip.select();
		return false;
	}

	if (pledgeform.gcontact.value == "")
	{
		window.alert("In order to properly process your request, you must provide your name or your church/group contact name.  Thank you!");
		pledgeform.gcontact.focus();
		pledgeform.gcontact.select();
		return false;
	}

	if (pledgeform.committee.selectedIndex == "0")
	{
		window.alert("Please select which committee you would like to participate in.  Thank you!");
		pledgeform.committee.focus();
		return false;
	}

	else
	{	
		return true;
	}
}

function validcon()
{
	if (conform.cname.value == "")
	{
		window.alert("In order to properly process your request, you must provide your name.  Thank you!");
		conform.cname.focus();
		conform.cname.select();
		return false;
	}
	else
	{
		return true;
	}
}