function format(nr){ if (nr < 10) nr = "0" + nr;return nr;} t = new Date(); s=format(t.getSeconds());mm=format(t.getMinutes());format(h=t.getHours()); d=format(t.getDay());j=format(t.getDate());m=format(1+t.getMonth());a=t.getYear();t.getFullYear(); document.write ('

'); document.write (j+'/'+m+'/'+a+' '+h+':'+mm); document.write ('

');