function addZero(n) {
	if(n<10)
		return '0'+n;
	else
		return n;
}

function setTime() {

	var d = new Date;
	
	fecha = addZero(d.getDate())+'/'+addZero(d.getMonth()+1)+'/'+d.getFullYear();
	hora = addZero(d.getHours())+':'+addZero(d.getMinutes())+':'+addZero(d.getSeconds());
	
	d = document.getElementById('date');
	d.firstChild.nodeValue = fecha + ' ' + hora + ' hs';
	
	setTimeout("setTime()", 1000);

}

window.onload = function() {
	setTime()
}
