
function jsLostPassword()
{
	if	( document.getElementById('showLostPassword').style.display == 'none' )
	{
		document.getElementById('showLostPassword').style.display = 'inline';
		document.getElementById('showAuthentificate').style.display = 'none';
	}
	else
	{
		document.getElementById('showLostPassword').style.display = 'none';
		document.getElementById('showAuthentificate').style.display = 'inline';
	}
	document.monFormulaire.txtNumeroSS.value = "";
	document.monFormulaire.txtPasswordEmail.value = "";
}

