function validateList(theForm)
{
	// Customize these calls for your form

	// Start ------->
	

	

	if (!validEmail(theForm.email,"email address",true))
		return false;
		




	// <--------- End

	return true;
}