function doPost(){
    if(document.frm.nngroup.value == ""){
        alert ("U dient 'Vestiging' in te vullen.");
        document.frm.naam.focus();
    }else if(document.frm.naam.value == ""){
        alert ("U dient 'Naam' in te vullen.");
        document.frm.naam.focus();
    }else if(document.frm.telefoonnummer.value == "" || (document.frm.telefoonnummer.value.split("").length != 10)){
        alert ("U dient 'Telefoonnummer' in te vullen. ");
        document.frm.telefoonnummer.focus();
    }else if(document.frm.email.value == ""){
        alert ("U dient 'Email' in te vullen. ");
        document.frm.email.focus();
    }else if(!isValidEmail(document.frm.email.value))
    {
        alert ("U dient een correct emailadres in te vullen.");
        document.frm.email.focus();
    }else{
        document.frm.action = "/lib/formbuilder/sendmail.php";
        document.frm.submit();
    }
}

function isValidEmail(str) {
    var _return = true;
    var AtPos   = str.indexOf("@");
    var StopPos = str.lastIndexOf(".");
    if ((StopPos == -1 || StopPos < AtPos))
    {
        _return = false;
    }
    else{
        _return = true;
    }

    return _return;
    //return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}   

function buttonHover(id){
    document.getElementById(id).style.color="#ffffff";
    document.getElementById(id).style.cursor="pointer";
}

function buttonOut(id){
    document.getElementById(id).style.color="#ffffff";
}
