
// VARIABLES GLOBALES


	// Largeur de la fenetre
	var winWidth;

	// Largeur des elts du menu
	var accW = 30;
	var imW = 80;
	var specW = 80;
	var mulW = 80;
	var hypW = 80;
	var linkW = 30;
	var totalW = accW+imW+specW+mulW+hypW+linkW;

	// Position en Y des elts du menu
	var accY;
	var imY;
	var specY;
	var mulY;
	var hypx;
	var linkY;
		
	// Couleur du fond
	var bgColor = "#EEEEEE";
	
	
	// Couleur des cases du menu onMouseOn
	var colorMenu = "#777777";
	// Couleur des cases du menu onMouseOut
	var colorMenuOut = "#FFFFFF";
	// Couleur des tableauY
	var colorMenuBorder = "";



// INITIALISER LA PAGE
function init5()
{
		initValues5();
		displayMenu5();
		//initMenu5();
}


// INITIALISER LES VALEURS
function initValues5()
{
	winWidth = document.body.clientWidth;
			
	// Position en Y des elts du menu
	accY = winWidth/2 - totalW/2 ;
	imY = accY+accW-2;
	specY = imY+imW-2;
	mulY = specY+specW-2;
	hypx = mulY+mulW-2;
	linkY = hypx+hypW-2;		
}


// INIT MENU : cache les sous menu

function initMenu5() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU11.style.visibility='hidden';
       
  }
  else
  {
       document.getElementById('ID_MENU11').style.visibility='hidden';
       
  }
}



// DESSIN DU MENU
function displayMenu5()
{
// MENU PRINCIPAL

	document.write(	"<DIV>");
	document.write(	"	<TABLE  BORDER='0' WIDTH='248'  BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"javascript:window.location='fr/menu_ver_rx_index.php'\"  BGCOLOR="+colorMenuOut+"><center><img src=\"image/rx.gif\"></center><img src=\"image/fleche_orange.gif\">&nbsp;&nbsp;<font family=Verdana	size=1 weight=bold><a href=\"fr/ag_cameroun.php\" >AU CAMEROUN</a></font></TD>");

	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+"><img src=\"image/fleche_orange.gif\">&nbsp;&nbsp;&nbsp;<font family=Verdana	size=1 weight=bold><a href=\"fr/ag_tchad.php\" >AU TCHAD</a></font></TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+"><img src=\"image/fleche_orange.gif\">&nbsp;&nbsp;<font family=Verdana	size=1 weight=bold><a href=\"fr/ag_rdc.php\" >EN REPUBLIQUE DEMOCRATIQUE DU CONGO</a></font></TD>");

	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+"><img src=\"image/fleche_orange.gif\">&nbsp;&nbsp;<font family=Verdana	size=1 weight=bold><a href=\"fr/ag_rca.php\" >EN REPUBLIQUE CENTRAFRICAINE </a></font></TD>");

	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+"><img src=\"image/fleche_orange.gif\">&nbsp;&nbsp;<font family=Verdana	size=1 weight=bold><a href=\"fr/ag_ci.php\" >EN COTE D'IVOIRE</a></font></TD>");

	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+"><img src=\"image/fleche_orange.gif\">&nbsp;&nbsp;<font family=Verdana	size=1 weight=bold><a href=\"fr/ag_congo.php\" >AU CONGO</a></font></TD>");

	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+"><img src=\"image/fleche_orange.gif\">&nbsp;&nbsp;<font family=Verdana	size=1 weight=bold><a href=\"fr/ag_gabon.php\" >AU GABON</a></font></TD>");

	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+"><img src=\"image/fleche_orange.gif\">&nbsp;&nbsp;<font family=Verdana	size=1 weight=bold><a href=\"fr/ag_benin.php\" >AU BENIN</a></font></TD>");

	document.write(	"		</TR>");
	
	document.write(	"	</TABLE>");
	document.write(	"</DIV>");
	

	


}


// FONCTIONS POUR LES TYPES D'IMAGES

function displayMenu11() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU11.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU11').style.visibility='visible';
  }
}		

	
function hideMenu11() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU11.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU11').style.visibility='hidden';
  }
}


