/****************************/
/*    FONCTION POUR LA BOITE VOTRE_COMTPE   */
/****************************/
function checkFormLogin()
{
	if(trim(document.getElementById('fl_login').value)=="" || document.getElementById('fl_login').value=="Identifiant (email)")
	{
		document.getElementById('fl_login').focus()
		document.getElementById('fl_login').value=""
		alert("Saisissez votre identifiant de connexion !")
		return false
	}
	else if(trim(document.getElementById('fl_password').value)=="" || document.getElementById('fl_password').value=="Password")
	{
		document.getElementById('fl_password').focus()
		alert("Saisissez votre mot de passe !")
		return false
	}
	else
	{
		return true
	}
}
/****************************/
/*   FONCTIONS CHECK DATA   */
/****************************/
function trim(str)
{
   return str.replace(/(^\s*)|(\s*$)/g,"")
}