COPYRIGHT = "Copyright &copy; FunWithWine.com, 2000-";

function writeCopyright()
{
    document.write("<font face='Comic Sans MS' color='#CC0033' size='-2'>");
    document.write(COPYRIGHT, new Date().getFullYear(), ". All rights reserved.");
    document.write("</font>");
}


function writeCopyrightInColor(szColor)
{
    document.write("<font face='Verdana, Arial, Helvetica, sans-serif' color='" + szColor + "' size='-1'>");
    document.write(COPYRIGHT, new Date().getFullYear(), ". All rights reserved.");
    document.write("</font>");
}

function writeCopyrightStringInColor(szCopyRight, szColor)
{
    document.write("<font face='Verdana, Arial, Helvetica, sans-serif' color='" + szColor + "' size='-1'>");
    document.write(szCopyRight, new Date().getFullYear(), ". All rights reserved.");
    document.write("</font>");
}


function writeYear()
{
    document.write(new Date().getFullYear());
}