function openWind(url) {
	var attributs  = 'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,width=420,height=450,left=50,top=80';
	window.open(url, 'jardin', attributs);
}
// Affichage d'une fenêtre contextuelle aux dimensions de l'écran.
function fAffichage_fenetre(pURL) {
	var vLargeur, vHauteur;
	vLargeur = String(screen.width);
	vHauteur = String(screen.height - 50);
	window.open(pURL, "jardin2", "top=0, left=0, menubar=yes, toolbar=yes, location=yes, directories=yes, status=yes, scrollbars=yes, resizable=yes, height="+vHauteur+", width="+vLargeur+"");
}
// Affichage et masquage de la carte grand format.
function fAffichage_masquage_carte(pElement1, pElement2) {

	if (document.getElementById(pElement1).style.display == 'none') {
		document.getElementById(pElement1).style.display = 'block';
		var ScreenWidth = document.body.offsetWidth;
		var MapWidth = document.getElementById(pElement1).offsetWidth;
		var LeftPosition = ((ScreenWidth - MapWidth) / 2);
		document.getElementById(pElement1).style.left = LeftPosition + "px";
	} else {
		document.getElementById(pElement1).style.display = 'none';
		//document.getElementById(pElement2).style.display = 'block';
	}

}


