function doPost(){
	if(document.frm.Bedrijfsnaam.value == ""){
		alert ("U dient 'Bedrijfsnaam' in te vullen.");
		document.frm.Bedrijfsnaam.focus();
	}else if(document.frm.Adres.value == ""){
		alert ("U dient 'Adres' in te vullen.");
		document.frm.Adres.focus();
	}else if(document.frm.Postcode.value == ""){
		alert ("U dient 'Postcode + Plaats' in te vullen.");
		document.frm.Postcode.focus();
	}else if(document.frm.Telefoon.value == ""){
		alert ("U dient 'Telefoon' in te vullen.");
		document.frm.Telefoon.focus();
	}else if(document.frm.Contactpersoon.value == ""){
		alert ("U dient 'Contactpersoon' in te vullen.");
		document.frm.Contactpersoon.focus();
	}else if(!isValidEmail(document.frm.Email.value))
	{
		alert ("U dient een correct emailadres in te vullen.");
		document.frm.Email.focus();
	}else if(document.frm.Email.value == ""){
		alert ("U dient 'Email' in te vullen. ");
		document.frm.Email.focus();  
	}else{          
		document.frm.action = "/includes/sendmail.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";
}