function checkContactForm(strFormName){
	var objForm = document.getElementById(strFormName);
	
	if(objForm.a.value.length < 2){
		alert('U heeft geen naam ingevuld');
		objForm.a.focus();
		return false;
	}
	
	if(objForm.e.value.length < 5){
		alert('U heeft geen bericht ingevuld');
		objForm.e.focus();
		return false;
	}
	
	objForm.submit();
}

function highlightButton(objLi){
	objLi.style.backgroundColor = '#93BDE6';
	objLi.style.fontWeight = 'bold'; 
}

function unlightButton(objLi){
	objLi.style.backgroundColor = '#6999C7';
	objLi.style.fontWeight = 'normal';
}

