todate=new Date() month=new Array() month[0]="Jan" month[1]="Feb" month[2]="Mar" month[3]="Apr" month[4]="May" month[5]="June" month[6]="July" month[7]="Aug" month[8]="Sep" month[9]="Oct" month[10]="Nov" month[11]="Dec" year=todate.getYear(); if(year<1000)year=year+1900; document.write(month[todate.getMonth()]+" "+todate.getDate()+", "+year+" ");