function mover(id){
	var s = document.getElementById(id).style;
	s.background = "#FC8600";
	s.color = "#FFFFFF";
}
function mout(id){
	var s = document.getElementById(id).style;
	s.background = "";
	s.color = "#000000";
}
function link(l){
	window.location = l;
}


function login(){
	if(event.keyCode==13 && document.login.username.value == ""){
		alert("U dient een gebruikersnaam in te vullen");
		document.login.username.focus();
	}
	else if(event.keyCode==13 && document.login.password.value == ""){
		alert("U dient uw wachtwoord in te vullen");
		document.login.password.focus();
	}
	else if(event.keyCode==13 && document.login.password.value != ""){
		document.login.submit();
	}
}
function home(){
	window.location = "./";
}

function empty(field){
	var f = field;
	if(f == "email"){
		document.login.email.value = '';
	}
	else if(f == "password"){
		document.login.password.value = '';
	}
}

function mail_password(){
	window.location = "./login/?mail=1";
}

