datumTyp=1; // try any number between 1-6 and see what happens...
textForeDatum="           Last updated: ";
textOmDatumInteVisas="This page was updated once, but I can not figure out when...";
 
if (document.lastModified && document.lastModified+""!="01/01/70 01:00:00")
{
 datumet=new Date(document.lastModified);
 var day=datumet.getDay();
 var month=datumet.getMonth()+1;
 if (month<10) {
 month="0"+month
 }
 var daym=datumet.getDate();
 if (daym<10) {
 daym="0"+daym
 }
 var hour=datumet.getHours();
 if (hour<10) {
 hour="0"+hour
 }
 var min=datumet.getMinutes();
 if (min<10) {
 min="0"+min
 }
 if (datumTyp==1)
  document.write(textForeDatum + document.lastModified);
 else if (datumTyp==2)
  document.write(textForeDatum + datumet.toGMTString());
 else if (datumTyp==3)
  document.write(textForeDatum + datumet.toLocaleString());
 else if (datumTyp==4)
  document.write(textForeDatum + datumet);
 else if (datumTyp==5)
  document.write(textForeDatum +
daym+"."+month+"."+datumet.getYear()+"&nbsp;&nbsp;"+hour+":"+min+"");
 else if (datumTyp==6)
  document.write(textForeDatum +
datumet.getYear()+"-"+(datumet.getMonth()+1)+"-"+datumet.getDate());
}
else
{
 document.write(textOmDatumInteVisas);
}
document.write('<br>&copy;Copyright 2006 Sign Pro of Lubbock<br> All content copyright Sign Pro of Lubbock and respective owners<br>');
document.write('All Rights Reserved <br> ');