//function to print footer on www.roebuckhouse.ie
//Created by Bart Busschots (www.voyager.8m.net)


//declaring variables
var lastMod=document.lastModified;
var lastModDate=new Date(lastMod);

function printFooter(){
  //starting table
  document.write("<TABLE WIDTH=\"100%\" BORDER=0 CELLPADDING=3 CELLSPACING=0><TR><TD ALIGN=\"LEFT\" VALIGN=\"Top\">");

  //left cell
  document.write("<FONT FACE=\"Arial\" COLOR=\"#009900\" SIZE=2><I>");
  document.write("Page Last Updated: ");
  document.write(lastModDate.getDate() + "-" + (lastModDate.getMonth()+1) + "-");
  if(navigator.appName=="Netscape"){
    document.write(lastModDate.getYear()+1900);
  }else{
    document.write(lastModDate.getYear());
  }
  document.write("</I></TD><TD ALIGN=\"RIGHT\" VALIGN=\"Top\">");

  //right cell
  document.write("<FONT FACE=\"Arial\" COLOR=\"#009900\" SIZE=2><I>");
  document.write("Created and Maintained by <A HREF=\"http://www.voyager.8m.net\">Bart Busschots</A>, &copy; 2001-6, All Rights Reserved.");

  //ending table
  document.write("</I></TD></TR></TABLE>");
}

