function showOther(the_form)
{
	if(the_form.value == 'Issues with Family Website')
	{
		var show_div = returnObjById('moreinfo');
		show_div.style.display = 'inline';
	}
	else
	{
		var hide_div = returnObjById('moreinfo');
		hide_div.style.display = 'none';
	}
}

function validateContactForm(the_form)
{
	return validateStandard(the_form, 'error');
}
