
//Page FICHE
function close_plusinfo(){
	document.getElementById("explicatif-complementaire").style.display="none";
	document.getElementById("plus-infos").style.display="block";
}
function open_plusinfo(){
	document.getElementById("explicatif-complementaire").style.display="block";		
	document.getElementById("plus-infos").style.display="none";
}

//ouvre une popup centerer par default
function open_popup(lien,fenetre,width,height,param){
	var left=(screen.availWidth-width)/2;
	var top=(screen.availHeight-height)/2;
	if (top <0) top=0;
	if (param!='') param=','+param;
	window.open(lien,fenetre,'top='+top+',left='+left+',width='+width+',height='+height+param);
	return false;
}
