
// popup_centree
function popup_centree(url,largeur,hauteur) {
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	w=open("","","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",scrollbars=0,menubar=1,directories=0,status=0,resizable=0");
	w.document.write("<html>\n<head>\n<title>Zoom</title>\n</head>\n");
	w.document.write("<body leftMargin='0' topMargin='0' marginwidth='0' marginheight='0'>\n");
	w.document.write("<a href='javascript:window.close();' title='Close'><img src='"+url+"' border='0' alt='Image'></a>\n");
	w.document.write("</body>\n</html>");
	w.document.close();
}

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";
}


