
function afficheposter(chemin,titre)
{
html = '<html><head><title>'+titre+'</title></head><body leftmargin=10 marginwidth=5 topmargin=10 marginheight=5><center><img src="'+chemin+'" border=0 name=mypict onclick="window.close();" style="cursor: hand" title="click to close"></center></body></html>';
popupImage = window.open('','pop','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width=1220,height=900');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
};

