function CreeTableau() {
	this.length = CreeTableau.arguments.length
	for (var i = 0; i < this.length; i++)
	this[i+1] = CreeTableau.arguments[i]
	}
	
var LibelleOption = new CreeTableau("TABLE DES MATIERES",
"Introduction au Droit en Isra&euml;l",
"Le notaire en Isra&euml;l",
"Conclure un contrat",
"Location  d'un bien immeuble",
"Achat d'un bien immobilier",
"Signatures, Traductions, L&eacute;galisations",
"Lexique",
"NOTRE BUREAU",
"PAGE D'ACCUEIL");

var CibleURL = new CreeTableau("",
"intro.htm",
"notaire.htm",
"contrat.htm",
"location.htm",
"achat.htm",
"signat.htm",
"../../lexiq/lxfran.htm",
"../bureau.htm",
"../../index.htm");
function AllerA(form) {
	i = form.SelectMenu.selectedIndex;
	if (i == 0) return;
	parent.location.href = CibleURL[i+1];
	}

