function emptyGebruikersnaam(){
	if (loginForm.txtGebruikersnaam.value!='Vul hier uw gebruikersnaam in.'){
	} else {
		loginForm.txtGebruikersnaam.value='';
	}
	if (loginForm.txtWachtwoord.value=='') {
		loginForm.txtWachtwoord.value='Vul hier uw wachtwoord in.';	
	}	
}

function emptyWachtwoord(){
	loginForm.txtWachtwoord.value=''
	if (loginForm.txtGebruikersnaam.value=='') {
		loginForm.txtGebruikersnaam.value='Vul hier uw gebruikersnaam in.';	
	}
}
