function doPost(){
    var email   = document.frm.email;
    AtPos       = email.value.indexOf("@");
    StopPos     = email.value.lastIndexOf(".");
    if(document.frm.naam.value == ""){
        alert ("U bent vergeten het volgende veld in te vullen: Naam");
        document.frm.naam.focus();
    }else if ( StopPos == -1 || StopPos < AtPos)
    {
        alert("U dient een correct e-mailadres in te vullen");
        document.frm.email.focus();
    }else if(document.frm.aantal.value == ""){
        alert ("U bent vergeten het volgende veld in te vullen: Aantal");
        document.frm.aantal.focus();
    }else{
        document.frm.action = "/custom/contactverwerk.inc.php";
        document.frm.submit();
    }
}

function isValidEmail(str) {
    return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}



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

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