function valueCheck(theForm) {
    if (theForm.name.value == "") {
        alert("Please enter you full name.");
        theForm.name.focus();
        return (false);
	}
	if (theForm.email.value == "") {
        alert("Please enter your email address.");
        theForm.email.focus();
        return (false);
    }
	if (theForm.telephone.value == "") {
        alert("Please enter your telephone number.");
        theForm.telephone.focus();
        return (false);
    }
	if (theForm.homeowner_type.value == "") {
        alert("Please enter your residency status.");
        theForm.homeowner_type.focus();
        return (false);
    }
	if (theForm.calltime.value == "") {
        alert("Please enter the best time for us to call you.");
        theForm.calltime.focus();
        return (false);
    }
	if (theForm.address.value == "") {
        alert("Please enter your address including postcode.");
        theForm.address.focus();
        return (false);
    }
    if (theForm.monthly.value == "") {
        alert("Please select your monthly household income after tax.");
        theForm.monthly.focus();
        return (false);
    }
	if (theForm.expenses.value == "") {
        alert("Please select your monthly expenses.");
        theForm.expenses.focus();
        return (false);
    }
    if (theForm.debts.value == "") {
        alert("Please select your total unsecured debts.");
        theForm.debts.focus();
        return (false);
    }
    if (theForm.creditors.value == "") {
        alert("Please select the number of creditors you have.");
        theForm.creditors.focus();
        return (false);
    }
	if (theForm.employment.value == "") {
        alert("Please select your employment status.");
        theForm.employment.focus();
        return (false);
    }

	
return (true);
}
