//<![CDATA[
var days = ['SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT'];
var months = ['GEN', 'FEB', 'MAR', 'APR', 'MAY', 'JUNE', 'JULY', 'AGO', 'SEP', 'OCT', 'NOV', 'DEC'];
function showtime()
  {
  var now = new Date();
  var wday = now.getDate();
  var day = now.getMonth()+1;
  var mon = months[now.getMonth()];
  var year = now.getFullYear();
  var hours = now.getHours();
  var minutes = now.getMinutes();
  var seconds = now.getSeconds();
  var timeValue = mon + " " + wday + "." + day + "." + year + ' - ore ' + hours
  timeValue += ((minutes < 10) ? ":0" : ":") + minutes +
      ((seconds < 10) ? ":0" : ":") + seconds + '';
  document.getElementById('dataora').innerHTML = timeValue;
  }
setInterval("showtime()",1000);
//]]>
