function CheckForm(p_objForm)
{
    if (p_objForm.Bericht.value.length==0){
        alert('You forgot to leave a message');
        p_objForm.Bericht.focus();
        return false;
    }
    
    if (p_objForm.Bedrijfsnaam.value.length==0){
        alert('You forgot the company name');
        p_objForm.Bedrijfsnaam.focus();
        return false;
    }
    
    if (p_objForm.Contactpersoon.value.length==0){
        alert('You forgot the contactperson');
        p_objForm.Contactpersoon.focus();
        return false;
    }
    
    if (p_objForm.Telefoon.value.length==0){
        alert('You forgot the phone number');
        p_objForm.Telefoon.focus();
        return false;
    }
    
    if (p_objForm.Email.value.length==0){
        alert('You forgot the email address');
        p_objForm.Email.focus();
        return false;
    }
    
    p_objForm.submit();
}
