var today = new Date();
var HH = today.getHours();
var MM = today.getMinutes();
if (HH < 10) 
HH = "0" + HH;
H = HH.toString();
M = MM.toString();
if (MM < 10) 
M = "0" + MM;
MMM = M.substring(0,1)+"0";
document.write('<A HREF="http://www.ille-et-vilaine.equipement.gouv.fr/accueil/domaines/maritime/automat/photo/photo_m'+H+MMM+'.jpg?1188922444046 "target="_blank">Dernière prise de vue à : '+ H+ ' H '+MMM+'<A>');
