
function foot_show(year)
{
  if (isNaN(year))
  {
    year = new Date().getYear();
  }
  
  document.write('<div class="footer">All Materials &copy; Belfrey Partners ' + year + '</div>');
}

foot_show();
