/* Website Last Update - javascript written by F.Campbell 10/06/05 webmaster@bntnz.co.nz */

if (Date.parse(document.lastModified) != 0) {
  var modiDate = new Date(document.lastModified);
  var monthName = new Array("Jan", "Feb", "Mar", "Apr", "May", 
   "Jun", "Jul", "Augt", "Sep", "Oct", "Nov", "Dec");
  document.write("<a href=about_us.htm>About us</a>" + " - ");
  document.write("<a href=sitemap.htm>Site Map</a>" + " - ");
  document.write("<a href=contact_us.htm>Contact us</a>" + " - ");
  document.write("<a href=career.htm>Career Opportunities</a>" + " - ")
  document.write("<a href=terms.htm>Terms and Condition</a>" + " - ")
  document.write("Last Update: " +  modiDate.getDate() + " ");
  document.write(monthName[modiDate.getMonth()] + " " + modiDate.getFullYear());
  }
