function init_id()
{
	if($('ProfilIdentifiant').value == 'identifiant')
		$('ProfilIdentifiant').value = '';
}

function toggle_id()
{
	if($('ProfilIdentifiant').value == '')
		$('ProfilIdentifiant').value = 'identifiant';
}

function init_mdp_background(){
	if($F('ProfilPasswordMd5')!= "" || (document.activeElement.id == "ProfilPasswordMd5" )) // ne fonctionne pas sous safari... utiliser activeTarget
		if($('ProfilPasswordMd5').hasClassName('background_mdp'))
			$('ProfilPasswordMd5').removeClassName('background_mdp');
}

function toggle_mdp_background(){
	if($F('ProfilPasswordMd5') == "")
		if(!$('ProfilPasswordMd5').hasClassName('background_mdp'))
			$('ProfilPasswordMd5').addClassName('background_mdp');
}

