//  ---- ouverture pop up centrer ---------function winopen (locat,wname,winwidth,winheight) {												   	var xMax = screen.width;var yMax = screen.height;														  	var xOffset = (xMax - winwidth)/2, yOffset = (yMax - winheight)/2;	window.open(locat,wname,'width='+winwidth+',height='+winheight+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=yes');}//  Zoom function open_plan(s) {	var winwidth =500; var winheight = 500;var wname='plan' ;	locat=s;	winopen(locat,wname,winwidth,winheight);	}//  ouverture panneau erreurfunction open_info(s) {	var winwidth =300; var winheight = 300;var wname='erreur' ; 	locat=s;	winopen(locat,wname,winwidth,winheight);	}function ferme(){  window.close();}function StartTimer(delai) {  // Déclenche le timer à la fin du chargement de la page (delai est en secondes)  setTimeout("ferme()", delai*6000);}//  ouverture Guilde Garantiefunction open_guilde(s) {	var winwidth =650; var winheight = 500;var wname='guilde' ; 	locat=s;	winopen(locat,wname,winwidth,winheight);	}
