// JavaScript Document
function cree_login()
{
	nom = document.form.form_nom.value.toLowerCase();
	prenom = document.form.form_prenom.value.toLowerCase();
	prenom = prenom.substr(0,1);
	nom = no_accent(nom);
	prenom = no_accent(prenom);
	document.form.form_login.value =  nom + prenom;
}
