function checkEntries(openanaccount)
{
	if (openanaccount.email.value == "")
	{
		alert('Your email address is required.');
		openanaccount.email.focus();
		openanaccount.email.select();
		return false;
	}
	if (openanaccount.name.value == "")
	{
		alert('Your name is required.');
		openanaccount.name.focus();
		openanaccount.name.select();
		return false;
	}
	if (openanaccount.hphone.value == "")
	{
		alert('Your home phone number is required.');
		openanaccount.hphone.focus();
		openanaccount.hphone.select();
		return false;
	}
	if (openanaccount.baddress.value == "")
	{
		alert('Your billing address is required.');
		openanaccount.baddress.focus();
		openanaccount.baddress.select();
		return false;
	}
	if (openanaccount.bcity.value == "")
	{
		alert('Your billing city is required.');
		openanaccount.bcity.focus();
		openanaccount.bcity.select();
		return false;
	}
	if (openanaccount.bzip.value == "")
	{
		alert('Your billing zip code is required.');
		openanaccount.bzip.focus();
		openanaccount.bzip.select();
		return false;
	}
	return true;
}
