function CheckFormGo() 
{ 
	doorgaan = CheckForm(); 
	if (doorgaan) 
	{ 
		document.FormContact.submit(); 
	} 
} 

function CheckForm() 
{
var error=""; 

if (document.FormContact.ReplyFormNaam.value.length<1) error += "\n- Naam is niet ingevuld";

if (document.FormContact.ReplyFormTelefoon.value.length<10) error += "\n- Telefoon is niet ingevuld";

if (document.FormContact.ReplyFormGeslacht[0].checked == false & document.FormContact.ReplyFormGeslacht[1].checked == false) error += "\n- Geslacht is niet ingevuld";

if(error != "")
{
	alert('De volgende velden zijn niet of fout ingevuld' + error);
	return false;
}

document.FormContact.submit(); 
return true;
}