// JavaScript Document<script type="text/javascript">
function hover(titre){
	titre.style.borderBottomWidth = "1px";
	titre.style.borderBottomStyle = "solid";
	titre.style.marginBottom = "-1px";
}
function non_hover(titre){
	titre.style.borderBottom = "none";
	titre.style.marginBottom = "1px";
}
function afficher(div){
	var la_div = document.getElementById(div);
	var present = la_div.style.display;
	if(present=="none"){
		la_div.style.display = "block";
	} else {
		la_div.style.display = "none";
	}
}

function PopUp(MM_file,MM_width,MM_height)
{
   MM_config=""
   MM_config+="toolbar=no,";
   MM_config+="location=no,"
   MM_config+="directories=no,";
   MM_config+="status=no,"
   MM_config+="menubar=no," //Not on Apple Mac for obvious reasons
   MM_config+="scrollbars=no,"
   MM_config+="resizable=no," //Mac windows are always resizable
   MM_config+="copyhistory=no,"
   MM_config+="width="+MM_width+","
   MM_config+="left=250,top=250,"
   MM_config+="height="+MM_height
   var MM_win=window.open(MM_file,"",MM_config);
   MM_win.focus();
}