var minutes =((now.getMinutes()<10)?":0":":")+ now.getMinutes();
var seconds =((now.getSeconds()<10)?":0":":")+ now.getSeconds();
var Time=(hours + minutes + seconds +" "+ ampm );
window.status=Time;
timerID = setTimeout("time()",1000);
timerRunning =true;
}
function clearStatus()
{
if(timerRunning)
clearTimeout(timerID);
timerRunning =false;
window.status="";
}
</script>
</head>
<body onLoad="startclock()">
</body>
ENLACE AL CODIGO
Si quieres enlazar desde tu pagina a este codigo
<!-- Inicio enlace Tutores.org -->
<a title="Tutores.org - Mostrar reloj en la barra de estado del navegador" href="http://www.tutores.org/codigo/1116/" target="_blank">Mostrar reloj en la barra de estado del navegador</a>
<!-- Final enlace Tutores.org -->