<!--
LA=new Date(document.lastModified);
NAvi=navigator.appVersion.indexOf("(",0);
NAv=navigator.appVersion.substring(NAvi+1,NAvi+5);
NA=navigator.appName;
MNA=navigator.appName+navigator.appVersion.substring(0,1)+NAv;
Ms="Updated ";

if(MNA=="Microsoft Internet Explorer4comp"||NA=="Netscape"){
Ye=LA.getYear();
Mo=LA.getMonth()+1;
Mont=LA.getMonth();
Da=LA.getDate();
Day=LA.getDay();
Months=new Array(12);
Months[0]="Jan";Months[1]="Feb";Months[2]="Mar";Months[3]="Apl";
Months[4]="May";Months[5]="Jun";Months[6]="Jul";Months[7]="Aug";
Months[8]="Sep";Months[9]="Oct";Months[10]="Nov";Months[11]="Dec";
Hr=LA.getHours();
Mn=LA.getMinutes();
document.write(Ms+Da+" "+Months[Mont]+" "+Ye);
}
else if(MNA=="Microsoft Internet Explorer2comp"){
LE=document.lastModified.length;
Ye=document.lastModified.substring(LE-4,LE);
Mo=document.lastModified.substring(LE-19,LE-17);
Da=document.lastModified.substring(LE-17,LE-14);
Day=document.lastModified.charAt(0);
document.write(Ms+Da+" "+Months[Mont]+" "+Ye);
}
else{
document.write(Ms+document.lastModified);
}
//-->