//-------------------------------------------------------
//	Script permettant d'ouvrir la fenêtre de la revue
//	de presse
//-------------------------------------------------------
function afficheAgenda(art_cle)
{
	if( art_cle != '' )
	{
		url	= repositionnement(document.URL);
		nw	= window.open('','agendaDetail','location=yes,status=yes,scrollbars=yes,resizable=yes,width=700,height=500');
		document.Infos.elements["recherche[art_cle]"].value	= art_cle;
		document.Infos.target 	= "agendaDetail";
		document.Infos.action	= url+"communes/agendaDetail.php";
		document.Infos.method	= "post";
		document.Infos.submit();
		nw.focus();
	}
}
