<!--
	var rDC=1;
	var destination="usa";
	var limite=90;
	
	tbLien = new Array();
		tbLien["fr"] = "http://www.manobi.net/fr/";
		tbLien["sn"] = "http://www.manobi.sn";
		tbLien["af_sud"] = "http://www.manobi.co.za";
		tbLien["usa"] = "http://www.manobidevelopmentfoundation.org";
	
	tbLien2 = new Array();
		tbLien2["fr"] = "Manobi France";
		tbLien2["sn"] = "Manobi Sénégal";
		tbLien2["af_sud"] = "Manobi South Africa";
		tbLien2["usa"] = "Manobi Development Foundation";

	posX = new Array();
		posX["fr"] = 182;
		posX["sn"] = 163;
		posX["af_sud"] = 200;
		posX["usa"] = 52;

	posY = new Array();
		posY["fr"] = 82;
		posY["sn"] = 115;
		posY["af_sud"] = 163;
		posY["usa"] = 90;
	
	function redirection()
	{
		if(destination == "af_sud")texte="Redirect to "+tbLien2[destination]+"<br> in "+Math.ceil((limite*2-rDC)/2)+" seconds";
		else texte="Rediretion vers "+tbLien2[destination]+"<br> dans "+Math.ceil((limite*2-rDC)/2)+" secondes";
		document.getElementById("tempo").innerHTML = "<br><center>"+texte+"</center>";

		if( ((limite-rDC) % 2) != 0)
		{
			document.getElementById("fleche").style.left = posX[destination];
			document.getElementById("fleche").style.top = posY[destination];
			document.getElementById("fleche").style.visibility = "visible";
		}
		else
		{
			//document.getElementById("tempo").innerHTML = "&nbsp;";
			document.getElementById("fleche").style.visibility = "hidden";
		}

		// temporisation
			if (rDC == limite*2)
			{
				clearTimeout(rTimeOutID);
				rDC=0;
				document.location.href= tbLien[destination];
			}
			rDC++;
		
			if(rDC>1)rTimeOutID = setTimeout("redirection()",500);

	}

	
	function roll_pays(cellule, color, contact)
	{
		cellule.style.backgroundColor = color;
		cellule.style.cursor= 'hand';
		document.getElementById("contact").innerHTML = document.getElementById(contact).innerHTML;
		document.getElementById("press").innerHTML = document.getElementById("press_"+contact).innerHTML;

		if(destination!=contact)
		{
			if(typeof rTimeOutID != "undefined")clearTimeout(rTimeOutID);
			rDC = 1;
			destination = contact;
			redirection();
		}
	}



	function lien(chemin)
	{
		document.location.href=chemin;
	}

	function popup(chemin, target,W, H)
	{
		var left2=(screen.width-W)/2;
		var top2=(screen.height-H)/2;
		window.open(chemin,target,'top='+top2+',left='+left2+',width='+W+',height='+H+',scrollbars=yes,resizable=no,menubar=no,status=no,toolbar=no');
	}

//->
