window.onload  = function(){
	if (document.getElementById('formSubmitJs')){
		document.getElementById('formSubmitJs').style.display = 'block';
	}
	if (boolFouteLogin){
		alert('De door u ingevoerde gebruikersnaam/wachtwoordcombinatie is onjuist.')
	}
}
function submitLoginform(){
	if (document.getElementById('loginForm')){
		if (document.getElementById('loginActie')){
			if (document.getElementById('loginActie').value == 'login'){
				var strAlert = '' ;
				var strFocus = '' ;
				if (document.getElementById('wachtwoord').value == ''){
					strAlert = '\n- Wachtwoord';
					strFocus = 'wachtwoord';
				}
				if (document.getElementById('gebruikersnaam').value == ''){
					strAlert = '\n- Gebruikersnaam' + strAlert;
					strFocus = 'gebruikersnaam';
				}				
				if (strAlert != ''){
					document.getElementById(strFocus).focus();
					alert('U heeft niet alle verplichte velden ingevuld.' + strAlert)
				} else{
					document.getElementById('loginForm').submit();
				}				
			} else {
				document.getElementById('loginForm').submit();
			}
		}
	}
	return false
}
