document.write('');
function getCurrentDate()
{
objDate = new Date();
var hours = objDate.getHours() < 10 ? '0' + objDate.getHours() : objDate.getHours();
var minutes = objDate.getMinutes() < 10 ? '0' + objDate.getMinutes() : objDate.getMinutes();
var seconds = objDate.getSeconds() < 10 ? '0' + objDate.getSeconds() : objDate.getSeconds();
hours = hours.toString();
minutes = minutes.toString();
seconds = seconds.toString();
var dir = 'http://www.bonifacy.zgorzelec.pl/templates/bonifacy_zgorzelec_green/images/';
html_h = '
';
html_h = html_h + '
';
html_m = '
';
html_m = html_m + '
';
html_s = '
';
html_s = html_s + '
';
s = '
';
return currentDate = html_h + s + html_m + s + html_s;
}
function setCurrentDate()
{
document.getElementById( 'date' ).innerHTML = getCurrentDate();
}
setCurrentDate();
setInterval( 'setCurrentDate()', 1000 );