<HTML>
<HEAD>
<TITLE>Active Desktop Clock</TITLE>
<style>
BODY {font-size :24pt;
color: azure;
background-color: background;
font-family: Verdana, Arial, sans-serif;
margin: 0px 0px 0px 0px;
text-align: center}
background:URL();
H4 {font-size :11pt;
color: azure;
font-family: Verdana, Arial, sans-serif;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
text-align: Left}
A {color: azure;cursor:hand}
A:hover {color: coral}
</style>
<Script language="vbs">
Sub UpdateTime
Calender.innerHTML = Formatdatetime(Now(),1)
A = Formatdatetime(Now(),3)
If Mid(A,10,2)="AM" and Left(A,2) = "12" then
A=Left(A,9) & "Midnight"
ElseIf Mid(A,10,2)="PM" and Left(A,2) = "12" then
A=Left(A,9) & "Midday"
End If
Clock.innerHTML = A
window.setTimeout "UpdateTime",1
End Sub
</script>
</HEAD>
<BODY onload="UpdateTime" scroll=no>
<div id=Clock> </div>
<div id=Calender style="font-size:60%"> </div>
</body>
</html>
Put lines in text document, rename to clock.htm, add as a desktop item.