﻿
function showfooter(customMessage)
{
    document.write('<p class="copyright">');
    document.write('Copyright © 2000 - 2010 Mint Components Inc. All rights reserved.');
    if (customMessage != '')
    {
        document.write('</br>');
        document.write(customMessage);
    }
    document.write('</p>');
}
