function popComm(page){
	window.open( page, "myWindow", "height = 550, width = 700,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=no, scrollbars=yes" )
}

function histoire(page){
	LeftPosition = (screen.width) ? (screen.width-805)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-600)/2 : 0;
	window.open( page, "temps", 'top='+TopPosition+',left='+LeftPosition+",height = 525, width = 805,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=no, scrollbars=yes" )
}

function comboBox(page){
	window.open(page)
}

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("fr");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

startListEn = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("en");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}