function agrandit(chemin)
{
i1 = new Image;
i1.src = chemin;
html = '<html><head><title>Photo de la station</title></head><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><center><img src="'+chemin+'" border="0" name="photo" onload="window.resizeTo(document.photo.width+14,document.photo.height+32)"></center></body></html>';
popupPhoto = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
popupPhoto.document.open();
popupPhoto.document.write(html);
popupPhoto.document.close()
};