/*Javascript to time stamp any page with month/day/four digit year                    		created by Patrick Gormley												Lapeer East High School												January 3, 1999*/test = new Date()month = test.getMonth()//month = (month * 1)var hours=test.getHours();var minutes=test.getMinutes();var seconds=test.getSeconds();var day = test.getDate();var monthIs;if (month==0) {monthIs="Jan";}if (month==1) {monthIs="Feb";}if (month==2) {monthIs="Mar";}if (month==3) {monthIs="Apr";}if (month==4) {monthIs="May";}if (month==5) {monthIs="Jun";}if (month==6) {monthIs="Jul";}if (month==7) {monthIs="Aug";}if (month==8) {monthIs="Sept";}if (month==9) {monthIs="Oct";}if (month==10) {monthIs="Nov";}if (month==11) {monthIs="Dec";}if (minutes<10) {minutes="0" + minutes;}if (seconds<10) {seconds="0" + seconds;}year = test.getFullYear();document.write(" ",monthIs,"  ",day,", ", year,"  at ",hours,":",minutes,":",seconds);