3 parts to this script
=======================================================
part 1 - align your clock here.
========================================================
<!-- --><span id="dynamicclock" style="position:absolute;left:200;top:250;">
</span><!-- -->
========================================================
part 2
==========================================================
<script language="JavaScript">
<!--

//dynamic clock from A1javascripts (http://www.a1javascripts.com)
//submitted causing errors and corrected
//all credit to unknown creator

function theclock(){
 if (!document.layers&&!document.all)
 return
Digital=new Date()
hours=Digital.getHours()
minutes=Digital.getMinutes()
seconds=Digital.getSeconds()
 dn="AM" 
 if (hours>12){
 dn="PM"
 hours=hours-12
 }
 if (hours==0)
 hours=12
 if (minutes<=9)
 minutes="0"+minutes
 if (seconds<=9)
 seconds="0"+seconds

goclock="<font size='-1' face='Arial' ><font size='-1'>The Time Now Is: </font><b>"+hours+":"+minutes+":"
 +seconds+" "+dn+"</b></font>"
if (document.layers){
document.layers.dynamicclock.document.write(goclock)
document.layers.dynamicclock.document.close()
}
else if (document.all)
dynamicclock.innerHTML=goclock
setTimeout("theclock()",1000)
 }

//-->
</script>
=============================================================
part 3
=============================================================

<!-- --><body onLoad="theclock()"><!-- -->