/* 
** Writes a copyright notice (normally used at the bottom of a page)
**
** Other Functions:   getYYYY.js
**
*/
function writeCopyright(who)
{
     var d = new Date();
     var yy = getYYYY(d);

     document.writeln("&copy "+yy+", "+who);
}


