<!--
// copyright.js
//
// Function to display copyright information
//
function copydate(start)
    {
    var today = new Date() ;
    owner = " Bryant Furnishing" ;
    year = today.getYear() ;
    if (year < 1000) year += 1900 ;
    if ((start != "") && (start != year))
        year = start + " - " + year ;
    document.write ("<p align=\"center\"><font size=\"-1\"><i>Copyright &copy; " + year + owner + "</i></font></p>") ;
    }
// -->