function CngTxt(id,txt){
var obj=document.getElementById(id);
if (txt){ obj.innerHTML=txt; }
else { obj.innerHTML=''; }
}


//CHECK FORMULIER
function check(){
if (document.frm.naam.value == "")
{
alert("Vul a.u.b. uw naam in om uzelf aan- of af te melden.")
document.frm.naam.focus(); 
return false;
}
if (document.frm.email.value == "")
{
alert("Vul a.u.b uw e-mailadres in om uzelf aan- of af te melden.")
document.frm.email.focus(); 
return false;
}
return true;
}



