function initsousrub() {
	liste=document.getElementById("sousrubrique").options;
	url=document.location.search;
	url=url.substring(1,url.length);
	if(url=="") url=liste[0].value;
	for(i=0;i<liste.length;i++) 
		if(liste[i].value==url) {
			liste[i].selected=true;
			parent.contenu.location.href=url+".html";
		}
}
function gosousrub(url) {
	document.location.href=document.location.pathname+"?"+url;
}
function gorub(url) {
	document.location.href="../"+url+"/menu.html";
}
