function contractorValidateStep1(f)
{
	if (isEmpty(f.www_naam1)) return error(f.www_naam1,"Bedrijfsnaam : Verplicht")
	else if (isEmpty(f.www_telefoon1)) return error(f.www_telefoon1,"Telefoon1 : Verplicht");
	else if (!isEmpty(f.www_email) && !isValidEmail(f.www_email) ) return error(f.www_email,"Opgegeven email adres heeft geen geldige opbouw.");
	else if (isEmpty(f.www_kvknummer)) return error(f.www_kvknummer,"KvK nummer : Verplicht");
	return true;
}

function contractorValidateStep2(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 (isEmpty(f.www_postcode2)) return error(f.www_postcode2,"Postcode letters : 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 contractorValidateStep3(f)
{
	return true;
}

function contractorValidateStep4(f)
{
	e = MM_findObj('www_automatisering[]');
	if (isEmpty(e))	return error(e,"Minimaal 1 selectie verplicht")
	return true;
}

function contractorValidateStep5(f)
{
	e = MM_findObj('www_contact_remove[]');
	if (e.length == 0) return error(e,"Minimaal 1 contactpersoon verplicht")
	return true;
}

function contractorValidateStep6(f)
{
	return true;
}

function contractorValidateStep7(f)
{
	return true;
}
