<!--//
//
//
// Note: This javascript has html with single quotes, but since the writeln command is in single quotes, you can
//       NOT put a single quote or two single quotes in the represent a single quote, but rather you need to use
//       and escape character, so a single quote is represented as a blackslash and then a single quote.
//
//

var sPageMenuClearBufferHeight = '50'    // Initialize field to 50 pixels, page can override if needed/wanted.


document.writeln('<TABLE cellSpacing=0 cellPadding=5 width=760 align=center bgColor=#ffffff border=0>');
document.writeln('  <TR>');
document.writeln('    <TD valign=top align=center width=164><IMG height=5 hspace=0 src="clear.gif" width=1 border=0><br>');
document.writeln('      <IMG src="pow2009award.jpg" border=0 width="118" height="119"><br>');
document.writeln('      <font style="font-family: Verdana; font-size: 10pt"><font color="#37378A"><b>Winner of the<br>2009 POW Awards</b></font></font><br>');
document.writeln('      <IMG height=8 hspace=0 src="clear.gif" width=1 border=0></TD>');
document.writeln('    <TD vAlign=top width=596 bgColor=#EED0D3 rowSpan=3><font style="font-family: Verdana; font-size: 12pt">');

//-->
