function DisplayCurrentDate()
{
  var now=new Date();
  var yr=now.getYear();
  if (parseInt(yr/1900) == 0) yr=yr+1900;
  var MN=now.getMonth()+1;
  var dayNr=now.getDate();
  var dName=now.getDay()+1;
  if(MN==1) Month="January";
  if(MN==2) Month="February";
  if(MN==3) Month="March";
  if(MN==4) Month="April";
  if(MN==5) Month="May";
  if(MN==6) Month="June";
  if(MN==7) Month="July";
  if(MN==8) Month="August";
  if(MN==9) Month="September";
  if(MN==10) Month="October";
  if(MN==11) Month="November";
  if(MN==12) Month="December";
  var Result=(Month+" "+dayNr+", "+yr);
  document.open();
  document.write(Result);
}

function nav(page) {window.location=page}
