// COPYRIGHT 2003 - LogixMedia.
function InitPartnerForm() {
	objWhichForm=document.Questionaire;
	OPTDependants(objWhichForm);
}
function ValidateResults(objForm) {
	if (RequestDataB(objForm.Country1,"Please select your nationality from the list of countries.","-1")){return false;}
	if (RequestDataA(objForm.Gender1,"Please select your gender.")){return false;}
	if (RequestDataA(objForm.Gender2,"Please select your de-facto or spouse's gender.")){return false;}
	if (RequestDataB(objForm.AgeGroup1,"Please select your age group.","-1")){return false;}
	if (RequestDataB(objForm.AgeGroup2,"Please select your de-facto or spouse's age group.","-1")){return false;}
	if (RequestDataB(objForm.Address1,"Please enter your residential address.","")){return false;}
	if (RequestDataB(objForm.Address2,"Please enter your Australian partner's residential address.","")){return false;}
	if (RequestDataB(objForm.ResType2,"Please select your Australian partner's residency type.","-1")){return false;}
	if (RequestDataA(objForm.Dependants,"Please indicate if you are bringing other financially dependent family members.")) {
		return false;
	} else {
		if (objForm.Dependants[0].checked == true) {
			if (RequestDataB(objForm.Dependants1,"Please indicate the relationship with the Dependant.","-1")){return false;}
		}
	}
	if (RequestDataA(objForm.GoodHealth1,"Please indicate your good health status.")){return false;}
	if (RequestDataA(objForm.GoodHealth2,"Please indicate the other family members good health status.")){return false;}
	if (RequestDataA(objForm.Criminal1,"Please indicate if you have a criminal record.")){return false;}
	return true;
}