function Copyright()
{
    currentDate = new Date();
    if (document.all)
        theYear = currentDate.getYear();
    else if (document.layers || document.getElementById)
        theYear = currentDate.getYear() + 1900;

    document.writeln(' &copy; 1991-' + theYear + '. All Rights Reserved. 800-808-3372');
}

function InlineCopyrightYears()
{
    currentDate = new Date();
    if (document.all)
        theYear = currentDate.getYear();
    else if (document.layers || document.getElementById)
        theYear = currentDate.getYear() + 1900;

    document.writeln('1991-'+theYear);
}
