		function popupcentree(page,largeur,hauteur,options) {
            var top=(screen.height-hauteur)/2;
			var left=(screen.width-largeur)/2;
			window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
		}
		
		function suppression_confirmation(identification_rubrique,id,cle,option) {
			var Suppr = confirm("Etes-vous certains de vouloir supprimer ? Cette opération est irrévocable.");
			var nom_domaine = "http://www.thierry-lannon.com/LANNON_V1";	
				if (Suppr) {
				
					switch (identification_rubrique) {
						case 101: 
							document.location.href=''+nom_domaine+'/php/ordre/fo/ordre_action.php?g_mode=3&g_id_cle='+ cle +'&g_id_ordre='+id; break;

					}
				}
		}
