// Thomas Hutchins - TeAM Hutchins AB - 980204 - info@teamh.se
<!--
function ShowLast(){
  var lModified = new Date(document.lastModified);
  var lMonth = lModified.getMonth()+1;
  var lDate = lModified.getDate();
  var lYear = lModified.getYear();
  if (lYear <= 2000) lYear = lYear + 1900;  // Y2K Fix
  var DateValue = " " + String(lYear).substr(2, 2); // Y2K Fix
  DateValue  += ((lMonth < 10) ? "0" : "") + lMonth;
  DateValue  += ((lDate < 10) ? "0" : "") + lDate;
  document.LastUpdate.face.value = DateValue;
}
//-->

