<!--
// PageInfo v1.3 by Fredrik Lofter. Copyright (C) 2000. All rights reserved. US date/time format.

var arrMonths = new Array("January","February","March","April","May","June","July","August","September","October","November","December")

function DaySuffix(strDaySuffix)
{
  switch (strDaySuffix)
  {
    case 1:
    case 21:
    case 31:
      strDaySuffix = "st"
      break
    case 2:
    case 22:
      strDaySuffix = "nd"
      break
    case 3:
    case 23:
      strDaySuffix = "rd"
      break
    default:
      strDaySuffix = "th"
  }
  return strDaySuffix
}

function LastLoaded()
{
  LastLoaded = new Date();
  var strDaySuffix
  var strAmPm;
  var Hours;
  var strMinutes
  Hours = LastLoaded.getHours();
  if (Hours >= 12) {
    strAmPm = " pm";
  }
  else {
    strAmPm = " am";
  }
  if (Hours > 12) {
    Hours -= 12;
  }
  if (Hours == 0) {
    Hours = 12;
  }
  strMinutes = LastLoaded.getMinutes();
  if (strMinutes < 10) {
    strMinutes = "0" + strMinutes;
  }	
  var strLastLoadedDate = arrMonths[LastLoaded.getMonth()] + " " + LastLoaded.getDate() + DaySuffix(LastLoaded.getDate()) + " " + LastLoaded.getFullYear()
  var strLastLoadedTime = Hours + ":" + strMinutes + strAmPm
  document.write('<font face=Arial size=1 color=#800000>loaded on <b>' + strLastLoadedDate + '</b> at <b>' + strLastLoadedTime + '</b>. </font>' )
}

function LastModified()
{
  if (Date.parse(document.lastModified) != 0)
  {
    var LastModified = new Date(document.lastModified)
    var strDate = arrMonths[LastModified.getMonth()] + " " + LastModified.getDate() + DaySuffix(LastModified.getDate()) + " " + LastModified.getFullYear()
    document.write('<font face=Arial size=1 color=#800000>This page was last updated on <b>' + strDate + '</b>. </font>')
  }
}

function Copyright()
{
  var CurrentYear = new Date();
  document.write('<font face=Arial size=1 color=#800000>The information on this page was compiled by Fredrik Lofter. Copyright © 2001 - ' + CurrentYear.getFullYear() + ' <a href="http://www.volvoamazonpictures.se" target="_new">Volvo Amazon Picture Gallery</a>. All rights reserved. </font>')
}

function Sources()
{
  document.write('<font face=Arial size=1 color=#800000>Sources include Volvo\'s vehicle register, Volvo Historical Archive, Ratten magazine, the Swedish Volvo Amazon Club\'s roster and magazine, and Volvo\'s spare parts catalogues, sales brochures, accessories catalogues, service manuals and workshop bulletins. </font>')
}

function Google()
{
  document.write('<font face=Arial size=1 color=#800000>This entire site uses <a href="http://www.google.com/analytics" target="_new">Google Analytics</a> for visitor tracking. </font>')
}

//-->
Copyright()
LastModified()
Sources()
Google()

