
function popup_fiche_visiteur(url) {
	var hauteur=500;
	var largeur=600;
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	var w=window.open(""+url+"","popup_fiche_visiteur","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",scrollbars=1,menubar=1,directories=0,status=0,resizable=1");
	w.document.close();
    w.focus();
}


function afficher_bloc(x)
{
	// On affiche le bloc concerné
	document.getElementById(x).style.display="block";
}


function masquer_bloc(x)
{
	// On masque le bloc concerné
	document.getElementById(x).style.display="none";
}




