function validateForm(f)
{
	if (f.FirstName.value == '')
	{
		window.alert('Please enter your First Name.');
		f.FirstName.focus();
		return false;
	}
	
	if (f.LastName.value == '')
	{
		window.alert('Please enter your Last Name.');
		f.LastName.focus();
		return false;
	}
	
	if (f.ContactPhone.value == '')
	{
		window.alert('Please enter a Contact Phone.');
		f.ContactPhone.focus();
		return false;
	}
	
	if (f.EmailAddress.value == '')
	{
		window.alert('Please enter your Email Address.');
		f.EmailAddress.focus();
		return false;
	}
	
	if (f.ContactMe.selectedIndex == 0)
	{
		window.alert('Please choose when you would like to be contacted.');
		f.ContactMe.focus();
		return false;
	}
	
	return true;
}