function Reloj(){
	Hora = Hoy.getHours()
	Minutos = Hoy.getMinutes()
	Segundos = Hoy.getSeconds()
	if (Hora<=9) Hora = "0" + Hora
	if (Minutos<=9) Minutos = "0" + Minutos
	if (Segundos<=9) Segundos = "0" + Segundos
	hra = Hora + "<b><font color=yellow>:</font></b>" + Minutos + " <font size=1 color=yellow><sup>" + Segundos + "</sup></font>"
	document.getElementById('Fecha_Reloj').innerHTML = hra
	Hoy.setSeconds(Hoy.getSeconds() +1)
	setTimeout("Reloj()",1000)
}