:::Hora na Barra de Status:::
< ------------------------------------------------------------------------------------------------------------------->
Coloque o código abaixo entre as tags <head> e </head>
<!-- Início Hora na Barra de Status -->
<!-- Simplesmente cole este código entre as tags <head></head> do seu site -->

<Script LANGUAGE="JavaScript">

var timerID = null;
var TimerRunning = false;

function stop(){
if(TimerRunning)
clearTimeout(timerID);
TimerRunning = false;
}

function display() {
var thedate = new Date();
var hours = thedate.getHours();
var Min = thedate.getMinutes();
var Sec = thedate.getSeconds();
var TimeV = "" + ((hours >12) ? hours -12 :hours)
TimeV += ((Min < 10) ? ":0" : ":") + Min
TimeV += ((Sec < 10) ? ":0" : ":") + Sec
TimeV += (hours >= 12) ? " P.M." : " A.M."
window.status = TimeV;
timerID = setTimeout("display()",1000);
TimerRunning = true;
}

function start() {
stop();
display();
}

start();

// end hide -->
</Script>

<!-- Fim Hora na Barra de Status -->
Salve o Código no Seu Template
:::Blogueiros:::
AnjinhaCella Blog
Fashion Girls Blog
:::Créditos:::
Nome: Templates by Marina
< ------------------------------------------------------------------------------------------------------------------->