Date Stamp
Instructions:
Copy and paste the following javascript in the BODY section of your page where you want the datestamp to appear:
Select all...
<script language="javascript"> var now=new Date(); document.write('
Today is '+"SunMonTueWedThuFriSat".substr(now.getDay()*3,3)+', '+"JanFebMarAprMayJunJulAugSepOctNovDec".substr(now.getMonth()*3,3)+' '+now.getDate()+', '+now.getFullYear()+'
'); </script>