/*function afficheMenu(nom){
	var nomdiv = "sousmenu_"+nom;
	//document.getElementById(nomdiv).style.height = "150px";
	document.getElementById(nomdiv).style.visibility = "visible";
	document.getElementById(nomdiv).style.display = "block";
}
function effaceMenu(nom){
	var nomdiv = "sousmenu_"+nom;
	//document.getElementById(nomdiv).style.height = "0px";
	document.getElementById(nomdiv).style.visibility = "hidden";
	document.getElementById(nomdiv).style.display = "none";
}*/
function PopupCentree(url, largeur, hauteur){
	htop=Math.round((screen.availHeight-hauteur)/2);
	lleft=Math.round((screen.availWidth-largeur)/2);
	window.open(url, "societe", "width="+largeur+",height="+hauteur+",top="+htop+",left="+lleft);
}