<!--
function charger(cible)
	{
	window.location=cible;
	}
	
adrp = new String(top.location);
var a=0;
var the_url ="";
var retourIndex ="";

if (adrp.indexOf("/index") == -1)
	{ 
	tab_adrp=adrp.split("/");
	for(i=0;i<tab_adrp.length;i++)
		{
		if(tab_adrp[i] == "fr")
			a=1;
		else if(a==1)
			a=2;
		else if(a==2)
			{
			the_url += tab_adrp[i];
			if(i<tab_adrp.length-1)
				{
				the_url += "/";
				retourIndex += "../";
				}
			}
		}
	charger(retourIndex+"index.php?main="+the_url);
	}
//-->