<!--
//Browser Detection
HM_DOM = (document.getElementById) ? true : false;
HM_NS4 = (document.layers) ? true : false;
HM_IE = (document.all) ? true : false;
HM_IE4 = HM_IE && !HM_DOM;
HM_Mac = (navigator.appVersion.indexOf("Mac") != -1);
HM_IE4M = HM_IE4 && HM_Mac;

IsY2K = (HM_DOM || HM_NS4);
NoY2K = (HM_IE4 || HM_IE4M);

function lastMod(){
 var lastMod = new Date(document.lastModified);
 var theDate = lastMod.getDate();
 var theMonth = lastMod.getMonth() + 1;
 if (IsY2K){ //NS4+, IE5+
  theYear = lastMod.getFullYear();
 }else if (NoY2K){ //IE4 (inc. Mac)
  theYear= lastMod.getFullYear()+100;
 }else{ //Other browsers
  theYear="2001";
 }
return "Last updated: " + theDate + "/" + theMonth + "/" + theYear;
}

function copyright(){
 var copysym="&copy;"
 var dt=new Date();
 return copysym + " " + dt.getFullYear() + " Affinity Windows";
}

function doNothing(){
}
//-->