// formcheck accountregistratie
	function ValidatorRegistratieAdd(theForm)
	{
	var alertsay = "";

	// voorletters
	if (theForm.voorletters.value == "")
		{
			alert("U heeft geen voorletter(s) ingevuld.");
			theForm.voorletters.focus();
			return (false);
		}
	// achternaam
	if (theForm.achternaam.value == "")
		{
			alert("U heeft geen achternaam ingevuld.");
			theForm.achternaam.focus();
			return (false);
		}
	// straat
	if (theForm.straat.value == "")
		{
			alert("U heeft geen straatnaam ingevuld.");
			theForm.straat.focus();
			return (false);
		}
	// huisnummer
	if (theForm.nummer.value == "")
		{
			alert("U heeft geen huisnummer ingevuld.");
			theForm.nummer.focus();
			return (false);
		}
	// postcode
	if (theForm.postcode.value == "")
		{
			alert("U heeft geen postcode ingevuld.");
			theForm.postcode.focus();
			return (false);
		}
	// woonplaats
	if (theForm.woonplaats.value == "")
		{
			alert("U heeft geen woonplaats ingevuld.");
			theForm.woonplaats.focus();
			return (false);
		}
	// emailadres
	if (theForm.email.value == "")
		{
			alert("U heeft geen email-adres ingevuld.");
			theForm.email.focus();
			return (false);
		}
	// telefoonnummer
	if (theForm.telefoon.value == "")
		{
			alert("U heeft geen telefoonnummer ingevuld.");
			theForm.telefoon.focus();
			return (false);
		}
	// gebruikersnaam
	if (theForm.gebruikersnaam.value == "")
		{
			alert("U heeft geen gebruikersnaam ingevuld.");
			theForm.gebruikersnaam.focus();
			return (false);
		}
	// wachtwoord1
	if (theForm.wachtwoord1.value == "")
		{
			alert("U heeft geen wachtwoord ingevuld.");
			theForm.wachtwoord1.focus();
			return (false);
		}
	// wachtwoord2
	if (theForm.wachtwoord2.value == "")
		{
			alert("U heeft uw wachtwoord niet herhaald.");
			theForm.wachtwoord2.focus();
			return (false);
		}
	// wachtwoord2
	if (theForm.wachtwoord2.value != theForm.wachtwoord1.value)
		{
			alert("U heeft uw wachtwoord niet correct herhaald.");
			theForm.wachtwoord2.focus();
			return (false);
		}
	// voorwaarden
	if (theForm.akkoord.checked == false)
		{
			alert("U dient akkoord te gaan met de algemene voorwaarden.");
			theForm.akkoord.focus();
			return (false);
		}

	}

// formcheck inloggen
	function ValidatorInloggen(theForm)
	{
	var alertsay = "";

	// gebruikersnaam
	if (theForm.gebruikersnaam.value == "")
		{
			alert("U heeft geen Gebruikersnaam ingevuld.");
			theForm.gebruikersnaam.focus();
			return (false);
		}
	// wachtwoord
	if (theForm.wachtwoord.value == "")
		{
			alert("U heeft geen Wachtwoord ingevuld.");
			theForm.wachtwoord.focus();
			return (false);
		}

	}

// formcheck emaillogin
	function ValidatorMailgegevens(theForm)
	{
	var alertsay = "";

	// emailadres
	if (theForm.email.value == "")
		{
			alert("U heeft geen Email-adres ingevuld.");
			theForm.email.focus();
			return (false);
		}

	}
