function startTime2(){
	var today2=new Date();
	var h2=today2.getHours();
	var m2=today2.getMinutes();
	var s2=today2.getSeconds();
	m2=checkTime2(m2);
	s2=checkTime2(s2);
	document.getElementById('hora_top').innerHTML=h2+":"+m2+":"+s2;
	t2=setTimeout('startTime2()',500);
}
function checkTime2(i2){
	if (i2<10){
	 i2="0" + i2;
	}
	return i2;
}
//fin hora
window.onload = function() { 
	startTime2();
}
