	function popupPasswordReminder(){
		
		openViewer2(444,
					200, 
					'/fw/util/passwordreminder.php', 
					"d_pass_reminder",
					_L("Mot de passe oublié")
		);

	}

	function popupEula_accept(){
			
			if(!testCookie()){
				location.href = '/fw/util/error.php?cookie=false';
				return;
			}

			if(submit_fm_create()){

				openViewer2(	484,
								307, 
								'/fw/util/eula/?signup=true', 
								"d_eula",
								_L("Agrément et conditions pour l'utilisation du site"),
								'<table style="width:434px;" bgColor="white"><tr><td style="padding-top:5px;padding-bottom:5px;" align="center"><input type="button" value="Je refuse" style=\"font-weight:bold;\" onclick="javascript:closeViewer(\'d_eula\');">&nbsp;<input type="button" style=\"font-weight:bold;\" value="J\'accepte" onclick="javascript:document.forms[\'fm_create\'].submit();"></td></tr></table>');

				InitButton();
			}
	}