
//-->


var isDOM = (document.getElementById ? true : false); 
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);
function getRef1(id) {
if (isDOM) return document.getElementById(id);
if (isIE4) return document.all[id];
if (isNS4) return document.layers[id];
}
function changer1(elt)
{
 t=getRef1(elt);
 if(t.style.color=="#808000")
  {t.style.color="#000000";}
 else
  {t.style.color="#808000";}
}
function getSty1(id) {
return (isNS4 ? getRef1(id) : getRef1(id).style);
} 

var popTimer1 = 0;
var litNow1 = new Array();

function popOver1(menuNum, itemNum) {
clearTimeout(popTimer1);
hideAllBut1(menuNum);
litNow1 = getTree(menuNum, itemNum);

changeCol1(litNow1, true);		   
targetNum = menug[menuNum][itemNum].target;
if (targetNum > 0) {
thisX = parseInt(menug[menuNum][0].ref.left) + parseInt(menug[menuNum][itemNum].ref.left);
thisY = parseInt(menug[menuNum][0].ref.top) + parseInt(menug[menuNum][itemNum].ref.top);
with (menug[targetNum][0].ref) {
left = parseInt(thisX + menug[targetNum][0].x);
top = parseInt(thisY + menug[targetNum][0].y);
visibility = 'visible';
      }
   }
}
function popOut1(menuNum, itemNum) {

if ((menuNum == 0) && !menug[menuNum][itemNum].target)
hideAllBut1(0)
else
popTimer1 = setTimeout('hideAllBut1(0)', 500);
}
function getTree(menuNum, itemNum) {
itemArray = new Array(menug.length);
while(1) {
itemArray[menuNum] = itemNum;
if (menuNum == 0) return itemArray;
itemNum = menug[menuNum][0].parentItem;
menuNum = menug[menuNum][0].parentMenu;
   }
}

function changeCol1(changeArray, isOver) {
for (menuCount = 0; menuCount < changeArray.length; menuCount++) {
if (changeArray[menuCount]) {
newCol = isOver ? menug[menuCount][0].overCol : menug[menuCount][0].backCol;

with (menug[menuCount][changeArray[menuCount]].ref) {
if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
         }
      }
   }
}
function hideAllBut1(menuNum) {
var keepMenus = getTree(menuNum, 1);
for (count = 0; count < menug.length; count++)
if (!keepMenus[count])
menug[count][0].ref.visibility = 'hidden';
changeCol1(litNow1, false);
}

function Menu1(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass) {
this.isVert = isVert;
this.popInd = popInd
this.x = x;
this.y = y;
this.width = width;
this.overCol = overCol;
this.backCol = "blue";
this.borderClass = borderClass;
this.textClass = textClass;
this.parentMenu = null;
this.parentItem = null;
this.ref = null;
}

function Item1(text, href, frame, length, spacing, target) {
this.text = text;
this.href = href;
this.frame = frame;
this.length = length;
this.spacing = spacing;
this.target = target;
this.ref = null;
}

function writeMenus1() {
if (!isDOM && !isIE4 && !isNS4) return;

for (currMenu = 0; currMenu < menug.length; currMenu++) with (menug[currMenu][0]) {
var str = '', itemX = 0, itemY = 0;
for (currItem = 1; currItem < menug[currMenu].length; currItem++) with (menug[currMenu][currItem]) {
var itemID = 'menug' + currMenu + 'item' + currItem;
var w = (isVert ? width : length);
var h = (isVert ? length : width);
if (isDOM || isIE4) {
str += '<div id="' + itemID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + w + '; height: ' + h + '; visibility: inherit; ';
if (backCol) str += 'background:url(\'images/fon_menu1.jpeg\'); ';
str += '" ';
}
if (isNS4) {
str += '<layer id="' + itemID + '" left="' + itemX + '" top="' + itemY + '" width="' +  w + '" height="' + h + '" visibility="inherit" ';
if (backCol) str += 'bgcolor="' + backCol + '" ';
}
if (borderClass) str += 'class="' + borderClass + '" ';

str += 'onMouseOver="popOver1(' + currMenu + ',' + currItem + ')" onMouseOut="popOut1(' + currMenu + ',' + currItem + ')">';

str += '<table width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 3 : 0) + '"><tr><td width=1 nowrap></td><td align="left" height="' + (h - 7) + '">' + (href ?  '<a  name="Link' + currMenu + '' + currItem + '" class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>' :  '<a name="Link' + currMenu + '' + currItem + '" class="' + textClass + '">' + text + '</a></td>');
if (target > 0) {

menug[target][0].parentMenu = currMenu;
menug[target][0].parentItem = currItem;

if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>';
}
str += '</tr></table>' + (isNS4 ? '</layer>' : '</div>');
if (isVert) itemY += length + spacing;
else itemX += length + spacing;
}
if (isDOM) {
var newDiv = document.createElement('div');
document.getElementsByTagName('body').item(0).appendChild(newDiv);
newDiv.innerHTML = str;
ref = newDiv.style;
ref.position = 'absolute';
ref.visibility = 'hidden';
}

if (isIE4) {
document.body.insertAdjacentHTML('beforeEnd', '<div id="menug' + currMenu + 'div" ' + 'style="position: absolute; visibility: hidden;">' + str + '</div>');
ref = getSty1('menug' + currMenu + 'div');
}

if (isNS4) {
ref = new Layer(0);
ref.document.write(str);
ref.document.close();
}

for (currItem = 1; currItem < menug[currMenu].length; currItem++) {
itemName = 'menug' + currMenu + 'item' + currItem;
if (isDOM || isIE4) menug[currMenu][currItem].ref = getSty1(itemName);
if (isNS4) menug[currMenu][currItem].ref = ref.document[itemName];
   }
}
with(menug[0][0]) {
ref.left = x+25;
ref.top = y+250;
ref.visibility = 'visible';
   }
}

//e

var menug = new Array();
menug[0]=new Array();
menug[0][0]=new Menu1(true,' ',0,0,200,'#cccccc','#99CC66','itemunBorder','itemunText1');

menug[0][1]=new Item1('Contexte','context.htm','_self',20, 5, 1);
menug[1]=new Array();
menug[1][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#


menug[0][2]=new Item1('Note Pratique sur Yaoundé','notepratiqueyde.htm','_self',20, 5, 2);
menug[2]=new Array();
menug[2][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#



menug[0][3]=new Item1('A Propos de la Conf&eacute;rence  >>','aproposconf.htm','_self',20, 5, 3);
menug[3]=new Array();
menug[3][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#
menug[3][1]=new Item1('Historique','aproposconf.htm#hist','_self',30, 0, 0);
menug[3][2]=new Item1('Objectifs','aproposconf.htm','_self',30, 0, 0);
menug[3][3]=new Item1('Th&egrave;mes','aproposconf.htm','_self',30, 0, 0);
menug[3][4]=new Item1('D&eacute;roulement','aproposconf.htm','_self',30, 0, 0);
menug[3][5]=new Item1('Participants','aproposconf.htm#part','_self',30, 0, 0);
menug[3][6]=new Item1('Sujets','aproposconf.htm#suj','_self',30, 0, 0);
menug[3][7]=new Item1('Source de Financement','aproposconf.htm','_self',30, 0, 0);
menug[3][8]=new Item1('Perspectives','aproposconf.htm#pers','_self',30, 0, 0);

menug[0][4]=new Item1('Document d\'orientation','docorientation.htm','_self',20, 5, 4);
menug[4]=new Array();
menug[4][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#

menug[0][5]=new Item1('Document de Travail','doctravail.htm','_self',20, 5, 5);
menug[5]=new Array();
menug[5][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#


menug[0][6]=new Item1('Termes de R&eacute;f&eacute;rence >>','tdrpresentateur.htm','_self',20, 5, 6);
menug[6]=new Array();
menug[6][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#
menug[6][1]=new Item1('Pr&eacute;sentateurs','tdrpresentateur.htm','_self',30, 0, 0);
menug[6][2]=new Item1('Travaux en Groupe','tdrtravauxengroup.htm','_self',30, 0, 0);
menug[6][3]=new Item1('Session Parall&egrave;le','tdrsessionsp.htm','_self',30, 0, 0);
menug[6][4]=new Item1('Visites de Terrain','visiteterrains.htm','_self',30, 0, 0);
//menug[6][5]=new Item1('Expos&eacute;s','exposes.htm','_self',30, 0, 0);


menug[0][7]=new Item1('Programme & Travaux >>','agenda.htm','_self',20, 5, 7);
menug[7]=new Array();
menug[7][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#
menug[7][1]=new Item1('Agenda','agenda.htm','_self',30, 0, 0);
menug[7][2]=new Item1('Ouverture','agenda.htm','_self',30, 0, 0);
menug[7][3]=new Item1('Keys Note Speakers','keynotespeakers.htm','_self',30, 0, 0);
menug[7][4]=new Item1('Pl&eacute;ni&egrave;res','plenieres.htm','_self',30, 0, 0);
menug[7][5]=new Item1('Travaux en Groupe','agenda.htm#tdr','_self',30, 0, 0);
menug[7][6]=new Item1('Visites de Terrain','visiteterrains.htm','_self',30, 0, 0);
menug[7][7]=new Item1('Session Parall&egrave;les','agenda.htm#sp','_self',30, 0, 0);
menug[7][8]=new Item1('Expositions','constconf.htm','_self',30, 0, 0);
menug[7][7]=new Item1('Conf&eacute;rence des Pr&eacute;sidents','conferencepresident.htm','_self',30, 0, 0);
menug[7][8]=new Item1('Soir&eacute;e Culturelle','conferencepresident.htm#soireecult','_self',30, 0, 0);

menug[0][8]=new Item1('Media Infos','constconf.htm','_self',20, 5, 8);
menug[8]=new Array();
menug[8][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#
menug[8][1]=new Item1('Communiqu&eacute; de Presse','constconf.htm','_self',30, 0, 0);



menug[0][9]=new Item1('liste des participants','participants.htm','_self',20, 5, 10);
menug[9]=new Array();
menug[9][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#


menug[0][10]=new Item1('Planning des vols','participants.htm','_self',20, 5, 10);
menug[10]=new Array();
menug[10][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#

menug[0][11]=new Item1('Partenaires','partenaires.htm','_self',20, 5, 11);
menug[11]=new Array();
menug[11][0]=new Menu1(true, '>', 200 ,0 ,150, '#99CC66', '#cccccc', 'itemBorder', 'itemText');//#





function Chargement2() 
{
 writeMenus1();
}


