function checkForm(){
	var theForm = document.ajout_login;

	if (theForm.email.value=="") {
		alert("Please fill in your e-mail address");
		theForm.email.focus();
		return;
	}
	if (theForm.password.value=="") {
		alert("Please fill in your password");
		theForm.password.focus();
		return;
	}

	theForm.action="identification.php";
	theForm.submit();
}

function checkForm2(){
	var theForm = document.ajout_login2;

	if (theForm.email.value=="") {
		alert("Please fill in your e-mail address");
		theForm.email.focus();
		return;
	}

	theForm.action="oublie.php";
	theForm.submit();
}