function candidateValidateStep1(f)
{
	if (isEmpty(f.www_naam1)) return error(f.www_naam1,"Voornaam : Verplicht");
	else if (isEmpty(f.www_naam3)) return error(f.www_naam3,"Achternaam : Verplicht");
	else if (isEmpty(f.www_geboortedatum_a)) return error(f.www_geboortedatum_a,"Geboortedatum : Verplicht");
	else if (isEmpty(f.www_geboortedatum_b)) return error(f.www_geboortedatum_a,"Geboortedatum : Verplicht");
	else if (isEmpty(f.www_geboortedatum_c)) return error(f.www_geboortedatum_a,"Geboortedatum : Verplicht");
	else if (checkDay(f.www_geboortedatum_a)) 
	{
		if (checkMonth(f.www_geboortedatum_b))
		{
			if (checkYear(f.www_geboortedatum_c))
			{
				return true
			}
		}
	}
	return false;
}

function candidateValidateStep2(f)
{
	if (isEmpty(f.www_adres1))	return error(f.www_adres1,"Straatnaam : Verplicht")
	else if (isEmpty(f.www_adres2)) return error(f.www_adres2,"Nummer : Verplicht");
	else if (!isNumeric(f.www_adres2,false)) return error(f.www_adres2,"Nummer ongeldig");
	else if (isEmpty(f.www_postcode1)) return error(f.www_postcode1,"Postcode cijfers : Verplicht");
	else if (!checkPostcode1(f.www_postcode1)) return error(f.www_postcode1,"Postcode cijfers ongeldig");
	else if (isEmpty(f.www_woonplaats)) return error(f.www_woonplaats,"Woonplaats : Verplicht");
	return true;
}

function candidateValidateStep3(f)
{
	if (isEmpty(f.www_telefoon1))	return error(f.www_telefoon1,"Telefoon 1 : Verplicht")
	if (!isNumeric(f.www_telefoon1,false))	return error(f.www_telefoon1,"Telefoon 1 : alleen cijfers")	
	else if (!isValidEmail(f.www_email)) return error(f.www_email,"Email ongeldig");
	return true;
}

function candidateValidateStep4(f)
{
	if (isEmpty(f.www_titel_cv))	return error(f.www_titel_cv,"Titel van de CV : Verplicht")
	return true;
}

function candidateValidateStep5(f)
{
	return true;
}

function candidateValidateStep6(f)
{
	return true;
}

function candidateValidateStep7(f)
{
	return true;
}

function candidateValidateStep8(f)
{
	return true;
}

function candidateValidateStep9(f)
{
	return true;
}

function candidateValidateStep10(f)
{
	return true;
}

function candidateValidateStep11(f)
{
	return true;
}

function candidateValidateStep12(f)
{
	return true;
}

function candidateValidateStep13(f)
{
	return true;
}

function candidateValidateStep14(f)
{
	return true;
}
function candidateValidateStep15(f)
{
	if (checkDay(f.www_beschikbaar_vanaf_a))
	{
		if (checkMonth(f.www_beschikbaar_vanaf_b))
		{
			if (checkYear(f.www_beschikbaar_vanaf_c))
			{
				return true;
			}
		}
	}
	return false;
}

function candidateValidateStep16(f)
{
	return true;
}

function candidateValidateStep17(f)
{
	return true;
}

function candidateValidateStep18(f)
{
	return true;
}