					var blnOk=true;
					
					function PreparationInfoZones() {
					
						if(document.getElementById) {
							//
						}
						else {
							blnOk=false;
						}
					
						if (blnOk) {
							CacherInfoZones();
						}
					}
					
					function MontrerInfoZones(strMenu) {
						if(blnOk) {
							CacherInfoZones(); 
							var z = 500;
							with(document.getElementById("infoZone"+strMenu).style) {
								visibility="visible";
								overflow="auto";
								zIndex=z+strMenu;
							}
						}
					}
					
					function CacherInfoZones() {
						if(blnOk) {
							var z = 500;
							for(i=1;i<=2;i++) {
								with(document.getElementById("infoZone"+i).style) {
									visibility="hidden";
									overflow="hidden";
									zIndex=z+i;
								}
							}
						}
					}
