// JavaScript Document
function MessageAlerte(txt)
	{
	if(txt!="")
		{
		alert(txt);
		return false;
		}
	}

function AjsUrl(url)
	{
	window.location.replace(url+'.php');
	}

function AjsMenu(id)
	{
	document.getElementById('DivFamille'+id).style.display = "block";
	}
