// *********************************************************************
function header() {
var strHtml = "";
strHtml += "
";
document.write(strHtml);
return;
}
// *********************************************************************
function footer() {
var strHtml = "";
strHtml += "";
document.write(strHtml);
return;
}
function yearDate() {
// returns the current system date in years only
var today = new Date();
year = today.getFullYear();
return year;
}