﻿document.write('<tr>');
document.write('<td align=left class=textSmall>');
document.write('</td>');
document.write('<td align=middle class=textSmall>');
document.write('</td>');
document.write('<td align=right class=textSmall>');

var months;
months = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");

function PageLastUpdated() 
{
    var now
    now = new Date(document.lastModified);
    document.writeln("Last Updated: " + months[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear());
}

PageLastUpdated();

document.write('</td>');
document.write('</tr>');


