function outputAnnouncements()
{
  var showAnnouncements = true;
  
  if (showAnnouncements) {

    document.writeln('<MENU><LI><FONT COLOR="#336699">Financial Forms</FONT>');
    document.writeln('  <MENU>');
        
    document.writeln('  <LI>');
//    document.writeln(    '<img src="/Images/new.gif" alt="New: ">');
    document.writeln(    'ELF Journal Vouchers and Payroll Transfers must be submitted by noon on Wednesday, 11/25/09 to be reviewed for November month end.');
    document.writeln(    '<FONT SIZE="1"><I> -&nbsp;4&nbsp;November&nbsp;2009&nbsp;10:01&nbsp;am</I></FONT><br><br>');
    document.writeln('    </LI>');

    document.writeln('  </MENU>');
    document.writeln('</LI></MENU>');

  } else {
    document.writeln('<MENU>');
    document.writeln('<LI><FONT COLOR="#336699">There are no announcements for today.</FONT></LI>');
    document.writeln('</MENU>');
  } // endIf
  
}
