// Script: "footerBlue.js"
// Depends on inheriting global declaration of:
//  rDate = Last revision date
//  and emailAdr, mailArg, and pPrefix
// 1/4/2012

document.writeln( "<table class='foott'>" );
document.writeln( "<tr>" );
document.writeln( "<td class='footl'>Last Revised: " + rDate + "</td>" );
document.writeln( "<td rowspan='2' class='footc'><a href='http://validator.w3.org/check?uri=referer'>" );
document.writeln ( "<img src='http://www.w3.org/Icons/valid-xhtml10-blue.png' alt='Valid XHTML 1.0 Transitional' height='31' width='88' /></a></td>" );
document.writeln ( "<td rowspan='2' class='footc'><a href='http://jigsaw.w3.org/css-validator/'>" );
document.writeln ( "<img src='http://validator.w3.org/images/valid_icons/valid-css-blue.png' alt='Valid CSS!' /></a></td>" );
document.writeln ( "<td class='footr'><a href='" + pPrefix + "copyrite.html'>&copy; 2012 Randolph Gibson</a></td>" );
document.writeln( "</tr>" );
document.writeln( "<tr>" );
document.writeln( "<td class='footls'><code>" + location.href.substr(7) + "</code></td>" );
document.writeln( "<td class='footr'>E-mail: <code><a href='mailto:"+emailAdr+mailArg+"'>"+emailAdr+"</a></code></td>" );
document.writeln( "</tr>" );
document.writeln( "</table>" );

