// JavaScript Document

function Copyright()
{
    currentDate = new Date();
	theYear = currentDate.getFullYear();

    document.writeln('&copy; 1991-' + theYear + '. ');
}

function InlineCopyrightYears()
{
    currentDate = new Date();
    theYear = currentDate.getFullYear();

    document.writeln('1991-'+theYear);
}

