/**
 *
 * @access public
 * @return void
 **/
function EnablePasswordField()
{
	if(window.document.update_profil.jmrdyn_checkbox_password.checked==true)
	{
		window.document.update_profil.jmrdyn_post_password.disabled=false;
		window.document.update_profil.jmrdyn_post_password.value="";

	}
	else
	{
		window.document.update_profil.jmrdyn_post_password.disabled=true;
		window.document.update_profil.jmrdyn_post_password.value="Mot de passe inchangé";
	}
}

/**
 *
 * @access public
 * @return void
 **/
function ConfirmAndGo(confirmString,urlToGo)
{
	if(confirm(confirmString))
		document.location.href=urlToGo;
}
