function sendForm()
{
	if (document.contactform.firstname.value !== '' &&
			document.contactform.surname.value !== '' &&
			document.contactform.address.value !== '' &&
			document.contactform.phone.value !== '' &&
			document.contactform.email.value !== '') 
	{
		document.contactform.submit();
	}
	else 
	{
		alert('Please make sure you have provided all compulsory fields.');
	}
}

function sendSubscribeForm()
{
	if (document.contactform.firstname.value !== '' &&
			document.contactform.surname.value !== '' &&
			document.contactform.email.value !== '' &&
			document.contactform.hearabout.value !== '') 
	{
		document.contactform.submit();
	}
	else 
	{
		alert('Please make sure you have given us your name, email address and tell us how you heard about Wildfitness.');
	}
}
