// *******************************************
	// Fonction appeler par le Bandeau Flash 
	function affiche_page(nom)
	{
		switch(nom)
		 {
			case "carte":
				window.location.href="index.php?page=carte_dih"
				break;
				
			case "expertise":
				window.location.href="index.php?page=centres"
				break;
				
			case "recherche":
				window.location.href="index.php?page=recherche"
				break;
			case "enseignement":
				window.location.href="index.php?page=enseignement"
				break;
				
			case "diagnostic":
				//window.location.href="#"
				break;
				
			case "immunologie":
				window.location.href="index.php?page=laboratoires"
				break;
						
			case "hereditaire":
				window.location.href="index.php?page=hereditaire"
				break;
			
			case "explorations":
				window.location.href="index.php?page=hereditaire"
				break;
				
			case "signes_enfant":
				window.location.href="index.php?page=signes-cliniques-enfant"
				break;
				
			case "signes_adulte":
				window.location.href="index.php?page=signes-cliniques-adulte"
				break;
				
			case "arbre_demarche_generale":
				window.location.href="index.php?page=demarche"
				break;
				
			case "arbre_syndrome":
				window.location.href="index.php?page=syndrome"
				break;
				
		}
	}



/**
 Déplacer une valeur select->option à un autre select
*/
function Deplacer(l1,l2) {
  if (l1.options.selectedIndex>=0) {
    o = new Option(l1.options[l1.options.selectedIndex].text, l1.options[l1.options.selectedIndex].value);
    l2.options[l2.options.length]=o;
    l1.options[l1.options.selectedIndex]=null;
  }
  else {
    alert("Aucune activité sélectionnée");
  }
}

