var NBCASES;

function initialiser(nbrCase){
 NBCASES=nbrCase;
}

function test(){
	window.alert(document.form.elements['selMois'].selectedIndex);
}

//fonctions fenetre
function afficher(id){
	cacher_tous();
	//largeur=document.getElementById(id).clientWidth;
	document.getElementById(id).style.visibility="visible";
}
function cacher_tous(){
	for(i=0;i<NBCASES;i++){
		document.getElementById("f"+i).style.visibility="hidden";
	}
}
