<!-- Begin
app = navigator.appName;

function lastUpdated(){
lastupdate = document.lastModified;
splitUpdateArray = lastupdate.split(" ");
dateArray = splitUpdateArray[0];
lTime = splitUpdateArray[1];
splitDateArray = dateArray.split("/");
lMonth = splitDateArray[0];
lDate = splitDateArray[1];
lYear = splitDateArray[2];
status = "st";

if (lMonth == "01"){lMonth = "January"};
if (lMonth == "02"){lMonth = "February"};
if (lMonth == "03"){lMonth = "March"};
if (lMonth == "04"){lMonth = "April"};
if (lMonth == "05"){lMonth = "May"};
if (lMonth == "06"){lMonth = "June"};
if (lMonth == "07"){lMonth = "July"};
if (lMonth == "08"){lMonth = "August"};
if (lMonth == "09"){lMonth = "September"};
if (lMonth == "10"){lMonth = "October"};
if (lMonth == "11"){lMonth = "November"};
if (lMonth == "12"){lMonth = "December"};

if (lDate == "01") (lDate = "1");
if (lDate == "02") (lDate = "2");
if (lDate == "03") (lDate = "3");
if (lDate == "04") (lDate = "4");
if (lDate == "05") (lDate = "5");
if (lDate == "06") (lDate = "6");
if (lDate == "07") (lDate = "7");
if (lDate == "08") (lDate = "8");
if (lDate == "09") (lDate = "9");

if (lDate == 1|| lDate == 21 || lDate == 31) (status = "st");
else if (lDate == 2 || lDate == 22) (status = "nd");
else if (lDate == 3 || lDate == 23) (status = "rd");
else if (status = "th");
 

document.write(lDate+status+" " + lMonth + " " + lYear);}

if (app == 'Microsoft Internet Explorer'){lastUpdated();}
if (app != 'Microsoft Internet Explorer'){document.write(lastupdate);}

// End -->
