function Copyright()
{
    currentDate = new Date();
    if (document.all)
        theYear = currentDate.getYear();
    else if (document.layers || document.getElementById)
        theYear = currentDate.getYear() + 1900;

    with (document)
    {
        //writeln('<hr color="#033D6F" size="3">');
        writeln('<center><font size="1" face="Verdana,Arial" color="#FFFFFF"><i>');
        writeln('Copyright &copy; ' + theYear + ', Headgames Radio');
        writeln('</i></font></center>');
    }
}
