function show5(){
 if(!document.layers&&!document.all&&!document.getElementById) return;
 var Digital=new Date();
 var hours=Digital.getHours();
 var minutes=Digital.getMinutes();
 var seconds=Digital.getSeconds();
 var monthDate=Digital.getDate();
 var month=Digital.getMonth()+1;
 var year=Digital.getFullYear();

 if(minutes<=9) minutes="0"+minutes;
 if(seconds<=9) seconds="0"+seconds;
 if(monthDate<=9) monthDate="0"+monthDate;
 if(month<=9) month="0"+month;

 myclock=hours+":"+minutes+":"+seconds+"  "+monthDate+"/"+month+"/"+year;
 if(document.layers){
		document.layers.liveclock.document.write(myclock);
		document.layers.liveclock.document.close();
 } else if (document.all) {
		liveclock.innerHTML=myclock;
 } else if (document.getElementById) {
		document.getElementById("liveclock").innerHTML=myclock;
 }
 setTimeout("show5()",1000);
}

function diaActual() {
	var currentTime = new Date();
	var month = currentTime.getMonth() + 1;
	var day = currentTime.getDate();
	var year = currentTime.getFullYear();
	if(month<=9) month="0"+month;
	if(day<=9) day="0"+day;
	document.write(day + "-" + month + "-" + year);
}

