function DrawNewsletterTableTop( title ) {
  document.writeln( '<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=595 >' )
  document.writeln( '<TR VALIGN="TOP">' )
  document.writeln( '  <TD WIDTH=595 ALIGN=LEFT>' )
  document.writeln( '    <SPAN class="mainHeader">' + title + '</SPAN>' )
  document.writeln( '  </TD>' )
  document.writeln( '</TR>' )
  document.writeln( '</TABLE>' )
  document.writeln( '<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=595>' )
  document.writeln( '<TR VALIGN="TOP">' )
  document.writeln( '  <TD WIDTH=595 NOWRAP>' )
  document.writeln( '    <TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0>' )
}


function DrawNewsletterTableBottom() {
  document.writeln( '    </TABLE>' )     
  document.writeln( '  </TD>' )
  document.writeln( '</TR>' )
  document.writeln( '</TABLE>' )
}


function DrawArticleSummary( articleType, headline, articleLink, tagName, text ) {
  document.writeln( '    <TR>' )
  document.writeln( '      <TD>' )
  document.writeln( '        <BR>' )
  document.writeln( '        <A NAME="' + tagName + '">' )
  document.writeln( '        <SPAN class="newsDescrip">' + articleType + '</SPAN><BR>' )
  document.writeln( '        <SPAN class="newsHeadline">' + headline + '</SPAN><BR>' )
  document.writeln( '        <DIV class="descText">' + text + '</DIV></TD>' )
  document.writeln( '      <TD WIDTH=45 VALIGN="bottom" ALIGN="right">' )
  document.writeln( '        <SPAN class="morenews">' )
  document.writeln( '        <A class="morenews" HREF="' + articleLink + '">more></A></SPAN></TD>' )
  document.writeln( '    </TR>' )
}


function DrawArticleTableTop( banner, articleType, headline ) {
  document.writeln( '<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=595>' )
  document.writeln( '<TR VALIGN="top">' )
  document.writeln( '  <TD WIDTH=595 ALIGN="left">' )
  document.writeln( '    <SPAN class="mainHeader">' + banner + '</SPAN>' )
  document.writeln( '    <P>' )
  document.writeln( '    <SPAN class="newsDescrip">' + articleType + '</SPAN><BR>' )
  document.writeln( '    <SPAN class="newsHeadline">' + headline + '</SPAN><P>' )
  document.writeln( '  </TD>' )
  document.writeln( '</TR>' )
  document.writeln( '</TABLE>' )
  document.writeln( '<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH=595>' )
  document.writeln( '<TR VALIGN="top">' )
  document.writeln( '  <TD WIDTH=595 NOWRAP>' )
  document.writeln( '    <TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0>' )
  document.writeln( '    <TR>' )
  document.writeln( '      <TD>' )
}


function DrawArticleTableBottom( backLink ) {
  document.writeln( '      </TD>' )
  document.writeln( '      <TD WIDTH=45><IMG SRC="../../images/spacer.gif"></TD>' )
  document.writeln( '    </TR>' )
  document.writeln( '    <TR>' )
  document.writeln( '      <TD COLSPAN=2 ALIGN=right>' )
  document.writeln( '        <SPAN class="morenews">' )
  document.writeln( '        <A class="morenews" HREF="' + backLink + '">back></A>' )
  document.writeln( '        </SPAN>' )
  document.writeln( '      </TD>' )
  document.writeln( '    </TR>' )
  document.writeln( '    </TABLE>' )      
  document.writeln( '  </TD>' )
  document.writeln( '</TR>' )
  document.writeln( '</TABLE>' )
}
