// Verifie le chemin et ajoutera les bons ../ pour les images et les liens
var NbRep=new String("");
var NbRep2=new String("");
var NbSlash=0;
var Ref=new String("");

Ref=window.location.pathname;
Ref=Ref.toString();
for (var cpt=0;cpt<Ref.length;cpt++)
	if (Ref.charAt(cpt)=='/') NbSlash++;
NbSlash=NbSlash-2;      
for (cpt=0;cpt<NbSlash;cpt++) 
	NbRep=NbRep+"../";

