function Cc(ide,color)

{

ide.style.color=color;

}

function ValidateForm()
{
if ((document.getElementById('Naam').value=='') || (document.getElementById('Voornaam').value=='') || (document.getElementById('Woonplaats').value=='') || (document.getElementById('mail').value==''))

{
alert('U dient alle verplichte velden in te vullen');
if (document.getElementById('Naam').value=='') {document.getElementById('Naam').style.backgroundColor='#ffffcc';}
if (document.getElementById('Voornaam').value=='') {document.getElementById('Voornaam').style.backgroundColor='#ffffcc';}
if (document.getElementById('Woonplaats').value=='') {document.getElementById('Woonplaats').style.backgroundColor='#ffffcc';}
if (document.getElementById('mail').value=='') {document.getElementById('mail').style.backgroundColor='#ffffcc';}

return false;

}
else
{
document.form2.submit();
}
}

function Cc(ide,color)

{

ide.style.color=color;

}

