Put this in the head of the page -
<script language="JavaScript" type="text/javascript">
function getTheDate() {
var now = new Date();
// d =
["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"][now
..getDay()]+",
";
d =
["Jan.","Feb.","Mar.","Apr.","May","June",
"July","Aug.","Sept.","Oct.","Nov.","Dec."][now.getMonth()]+" ";
d+=now.getDate()+", "+now.getFullYear();
return d;
}
</script>
and in the body, put this -
<script language="JavaScript"
type="text/javascript">document.write(getTheDate());</script>
--
Murray
Jane Here said:
OIC.
Many thanks for clearing that up.