<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  Alex Jarvis (gamemastax@hotmail.com) -->
<!-- Web Site:  http://www.angelfire.com/ri2/chronotrigger/ -->

function clock() {
var title="Digital Reflex Photography For the 21st Century...";
var date=new Date();
var year=date.getYear();
var month=date.getMonth();
var day=date.getDate();
var hour=date.getHours();
var minute=date.getMinutes();
var second=date.getSeconds();
var months=new Array("JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC")

var monthname=months[month];

if (hour > 12) {
hour=hour- 12;
}
if (minute < 10) {
minute="0"+minute;
}
if (second < 10) {
second="0"+second;
}
window.status=monthname+" "+day+", "+year+" - "+hour+":"+minute+":"+second;
setTimeout("clock()", 1000)
}
