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("CONTENTS",
"Courtroom question",
"Know the Law !",
"Our Site - why not only in English",
"Court Pearls of Wisdom",
"HOME PAGE");

var CibleURL = new CreeTableau("",
"question.htm",
"know.htm",
"know.htm#notonly",
"index.htm",
"../../index.htm");
function AllerA(form) {
	i = form.SelectMenu.selectedIndex;
	if (i == 0) return;
	parent.location.href = CibleURL[i+1];
	}
