﻿if (document.lastModified) {
update=new Date(document.lastModified);
tM=update.getMonth() + 1;
tM=(tM < 10) ? '0' + tM : tM;
tD=update.getDate()
tD=(tD < 10) ? '0' + tD : tD;
tY=update.getFullYear()
document.write('<p class="hxsmall">&copy;Waterford Web 2009<br /><strong>Page Last Updated: </strong>'+tD + '-' + tM + '-' + tY + '</p>');
}