var now = new Date(document.lastModified);
var textout;

textout = now.getDate() + " ";

var month = now.getMonth();
if (month==0) textout+="January";
if (month==1) textout+="February";
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+=", " + now.getFullYear();

function printDate() {
  document.write (textout);
}

