//function to print footer on Bart's home page
//www.voyager.8m.net
//http://minds.cs.may.ie/~voyager
//www.cs.may.ie/~bart


//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 aligb=\"left\" valign=\"top\" class=\"footer\">");

  //check to make sure it is not the DODGEY NS Version
  if(!(navigator.appName == "Netscape" && parseFloat(navigator.appVersion) == 4.04)){
   //left cell
   //document.write("<FONT FACE=\"Arial\" COLOR=\"#5F9EA0\" SIZE=2><I>");
   document.write("Page Last Updated: ");
   document.write(lastModDate.getDate() + "-" + (lastModDate.getMonth()+1) + "-");
   if(navigator.appName=="Netscape"){
     document.write(lastModDate.getYear()+2000);
   }else{
     document.write(lastModDate.getYear());
   }
  }

  document.write("</td><td align=\"right\" valign=\"top\" class=\"footer\">");


  //right cell
  //document.write("<FONT FACE=\"Arial\" COLOR=\"#5F9EA0\" SIZE=2><I>");
  document.write("Created by <A HREF=\"mailto:bart.busschots@physics.org?subject=from voyager home page\">Bart Busschots</A>, &copy; Bartificer Web Design 2001");
  
  //ending row
  document.write("</td></tr>");

  //ending table
  document.write("</table>");
}

