
function POPUP(url,nom,largeur,hauteur,options)
	{
	var haut=(screen.height-hauteur)/2;
	var Gauche=(screen.width-largeur)/2;
	fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
	}

function AjsMenu(Id)
	{
	if(Id == 1)
		{
		document.getElementById("DivMenu1").style.visibility = "visible";
		document.getElementById("DivMenu2").style.visibility = "hidden";
		}
	else
		{
		document.getElementById("DivMenu1").style.visibility = "hidden";
		document.getElementById("DivMenu2").style.visibility = "visible";
		}
	}
function kill()
	{
	document.getElementById("DivMenu1").style.visibility = "hidden";
	document.getElementById("DivMenu2").style.visibility = "hidden";
	}

document.onclick = kill;
document.write('')