Try replacing this...
Code:
<p align="right">
<applet code="Time.class" codebase="http://wcog.net/v-web/date/" width="225" height="20">
<param name="textcolor" value="800000">
<param name="backcolor" value="c0c0c0">
<param name="font" value="Arial">
<param name="fontsize" value="11">
<param name="bordercolor" value="c0c0c0">
</applet>
...with this...
Code:
<p style="text-align: right; color: #800000; font-family: arial, sans-serif;
font-size: 11px; font-weight: bold;">
<script lang="JavaScript">
today = new Date();
document.write(today.toLocaleString());
</script>
</p>
Pretty darned close to what you have, except it is static (time does not increment).
Bookmarks