// JavaScript Document
function VerifyData()
{
	var bVerifyData, sPrompt;

	bVerifyData = true;
	sPrompt = '';

	if (!document.forms[0].Contact_me_by_phone.checked && !document.forms[0].Contact_me_by_email.checked)
	{
		sPrompt = sPrompt + 'Please indicate how you would like to be contacted and submit either your phone number or your email address.\n';
		bVerifyData = false;
	}
	if (document.forms[0].Name.value == '')
	{
		sPrompt = sPrompt + 'Please enter your name.\n';
		bVerifyData = false;
	}
	if (document.forms[0].Address.value == '')
	{
		sPrompt = sPrompt + 'Please enter your address.\n';
		bVerifyData = false;
	}
	if (document.forms[0].City.value == '')
	{
		sPrompt = sPrompt + 'Please enter your city.\n';
		bVerifyData = false;
	}
	if (document.forms[0].State.value == '')
	{
		sPrompt = sPrompt + 'Please enter your state.\n';
		bVerifyData = false;
	}
	if (document.forms[0].Zip.value == '')
	{
		sPrompt = sPrompt + 'Please enter your zip code.\n';
		bVerifyData = false;
	}
	if (document.forms[0].email.value == '')
	{
		sPrompt = sPrompt + 'Please enter your E-mail address.\n';
		bVerifyData = false;
	}
	if (document.forms[0].Contact_me_by_phone.checked)
	{
		if (document.forms[0].Phone.value == '')
		{
			sPrompt = sPrompt + 'Please enter your phone number.\n';
			bVerifyData = false;
		}
	}
	if (document.forms[0].Contact_me_by_email.checked)
	{
		if (document.forms[0].email.value == '')
		{
			sPrompt = sPrompt + 'Please enter your email address.\n';
			bVerifyData = false;
		}
	}

	if (!bVerifyData)
	{
		alert(sPrompt);
	}

	return bVerifyData;
}
