

function stepOne()
{
 a = document.forms[0]
 if(checkBoxChecked(a.uitvoering,"Uitvoering",0)&&
 checkString(a.aantal,"Geef het aantal",0)){return true;}
 else{return false;}
}

function stepTwo()
{
 a = document.forms[0]
 if(checkBoxChecked(a.levering,"Levering",0))
 {
	if(a.betaling.checked){return true;}else{alert("U heeft nog niet aangegeven akkoord te gaan met de betaalwijze.Wilt u zo vriendelijk zijn dit alsnog te doen?")}
}
 else{return false;}
}

function stepThree()
{
 a = document.forms[0]
 if(
 checkBoxChecked(a.aanhef,"Aanhef",0)&&
 checkString(a.naam,"Naam",0)&&
 checkString(a.adres,"Adres",0)&&
 checkZipCode(a.postcode,"Postcode",0)&&
 checkString(a.plaats,"Plaats",0)&&
 checkPhone(a.telefoon,"Telefoon",0)&&
 checkIfFilled(a.mobiel,"Mobiel","phone")&&
 checkEmail(a.email,"E-mail",0)
 ){return true;}
 else{return false;}
}

function stepFive()
{
 a = document.forms[0]
 if(checkString(a.myFile,"Selecteer het bestand",0)&&
 checkBoxChecked(a.akkoord_copyright,"Auteursrecht",0)){return true;}
 else{return false;}
}





