function validate(theForm)
{
	
	
	if (theForm.firstname.value == "")
	{
	alert("Please enter a your first name.");
	theForm.firstname.focus();
	return (false);
	}
	
	if (theForm.surname.value == "")
	{
	alert("Please enter a your surname.");
	theForm.surname.focus();
	return (false);
	}
	
	if (theForm.address.value == "")
	{
	alert("Please enter an address.");
	theForm.address.focus();
	return (false);
	}
	
	if (theForm.postcode.value == "")
	{
	alert("Please enter the postcode to the above address.");
	theForm.postcode.focus();
	return (false);
	}
	
	if (theForm.daytel.value == "")
	{
	alert("Please enter a day time contact telephone number.");
	theForm.daytel.focus();
	return (false);
	}
	

}


