<script language="JavaScript">
<!-- hide --
/*
Current date script
*/
var now = new Date();
var textout;
var month = now.getMonth();
var date = now.getDate();
var year = now.getYear();
if (month==0) textout="January";
if (month==1) textout="Febuary";
if (month==2) textout="March";
if (month==3) textout="April";
if (month==4) textout="May";
if (month==5) textout="June";
if (month==6) textout="July";
if (month==7) textout="August";
if (month==8) textout="September";
if (month==9) textout="October";
if (month==10) textout="November";
if (month==11) textout="December";
textout += " " + date + " '" + year;
document.write ("<font size=5><font color=BLUE>The date is " + textout + "</font>");
// -- end hiding -->
</script>
|