/ / This function will display the clock in the status bar
// Once the function is called, the clock will be activated. Since then it will call yourself
Function display_time_in_status_line () {
VAR D = New Date ();
Var h = d.GetHours ();
Var m = d.getminutes ();
VAR ampm = (h> = 12)? "pm": "am";
IF (h> 12) h - = 12;
IF (h == 0) h = 12;
IF (m <10) m = "0" m;
VAR T = H ':' m '' ampm;
DefaultStatus = T;
Settimeout ("Display_time_in_status_line ()", 60000);
}
script>
hEAD>
>
body>
html>