  <!-- Hide from old browsers
    // use Puts the date in a string called strDate which can be used elsewhere

  month = new Array(12);
  day = new Array(7);

  month[0]="01"
  month[1]="02"
  month[2]="03"
  month[3]="04"
  month[4]="05"
  month[5]="06"
  month[6]="07"
  month[7]="08"
  month[8]="09"
  month[9]="10"
  month[10]="11"
  month[11]="12"

  day[0]="<b>неделя</b>"
  day[1]="<b>понеделник</b>"
  day[2]="<b>вторник</b>"
  day[3]="<b>сряда</b>"
  day[4]="<b>четвъртък</b>"
  day[5]="<b>петък</b>"
  day[6]="<b>събота</b>"

  lastmoddate = new Date(document.lastModified);
  
  //today  = new Date();
  aDay   = lastmoddate.getDay();
  aMonth = lastmoddate.getMonth();
  aDate  = lastmoddate.getDate();
  aYear = lastmoddate.getFullYear();
    
  strDate = "Последно обновяване: "+day[aDay] + ",  " + aDate+ "/" +month[aMonth] +"/"+aYear
  document.write(strDate);
  // End Hide -->
