//*****************************************************************************
//
// footBar.js
//
// This javascript code is the foot of StreetOne website.
//
// This is basically just the html code. It is in a javascript function because
// this same code is used for every page of StreetOne website. Therefore, to 
// make a modification on the foot, it has to be done in this javascript function.
// 
// 
//
// Created by                       Date
// ---------------                  ----------------
// Claudia Caballero                08/24/2004
//
//
// Modified by                      Date
// ---------------                  ----------------
//
//
//
//*****************************************************************************


function footBar() {
document.write('<TABLE width="783" height="" border="0" cellpadding="0" cellspacing="0"> ');
document.write('  <tr>  ');
document.write('    <td><img src="../images/spacer.gif" width="10"></td> ');
document.write('  </tr>  ');
document.write('  <tr>  ');
document.write('    <td> ');
document.write('      <TABLE width="100%" height="" border="0" cellpadding="1" cellspacing="0" bgcolor=#cccccc> ');
document.write('        <tr> ');
document.write('          <td> ');
document.write('            <TABLE width="100%" height="" border="0" cellpadding="0" cellspacing="5" bgcolor=#ffffff> ');
document.write('              <tr> ');
//document.write('                <td width="140" align="left" valign="middle" class=HPsmall>Powered by<br> ');
//document.write('                  <a href="http://www.streetone.com"><img src="../images/streetone_sm.gif" border=0></a> ');
//document.write('                </td> ');
document.write('               <td width="100%" align="center" valign="middle">   ');
document.write('                 <div align=center class=HPfooter> ');
document.write('                   Copyright © 2004 StreetOne, Inc. All rights reserved.  ');
document.write('                 </div> ');
document.write('              </tr> ');
document.write('            </table> ');
document.write('          </td> ');
document.write('        </tr>  ');
document.write('      </table> ');
document.write('    </td> ');
document.write('  </tr> ');
document.write('</table> ');
}