//*****************************************************************************
//
// logoBar.js
//
// This javascript code is the Logo header 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 header, it has to be done in this javascript function.
// 
// 
//
// Created by                       Date
// ---------------                  ----------------
// Claudia Caballero                08/24/2004
//
//
// Modified by                      Date
// ---------------                  ----------------
//
//
//
//*****************************************************************************

function logoBar() {
  document.write('      <TABLE width="788" height="" border="0" cellpadding="0" cellspacing="0" bgColor="#FFFFFF"> ');
  document.write('        <TR> ');
  document.write('          <TD width=1 height=10><IMG src="../images/spacer.gif" width=1 height=10 border=0></TD>');
  document.write('        <TR> ');
  document.write('        <TR valign=top> ');
  document.write('          <TD> ');
  document.write('            <TABLE  BGCOLOR="#ffffff" width="" border="0" cellpadding="0" cellspacing="0"> ');
  document.write('              <TR> ');
  document.write('                <TD width="100%"><IMG src="../images/spacer.gif" width=1 border=0></TD></TR> ');
  document.write('              <TR> ');
  document.write('                <TD width="100%" align=center> ');
  document.write('                  <a href="http://www.streetone.com"><img align="center" src=../images/streetone.gif border="0" alt="StreetOne homepage"></a></TD></TR> ');
  document.write('              <TR> ');
  document.write('                <TD width="100%"  height=05><IMG height=05 src="../images/spacer.gif" width=1 border=0></TD> ');
  document.write('              </TR> ');
  document.write('            </TABLE> ');
  document.write('          </TD> ');
  document.write('          <TD> ');
  document.write('            <table width="100%" border="0" cellpadding="0" cellspacing="0"> ');
  document.write('              <tr> ');
  document.write('                <td align=right> ');
  document.write('                  <a href="http://www.streetone.com"> <img name="home" src="../images/home.jpg" border="0"></a><img name="division" src="../images/div_line.jpg" border="0"><a href="../html/contact_us.html"> <img name="contact" src="../images/contact_us.jpg" border="0"></a> ');
  document.write('                </td> ');
  document.write('              </tr> ');
  document.write('            </table>  ');
  document.write('          </TD> ');
  document.write('        </TR> ');
  document.write('        <TR> ');
  document.write('          <TD width="100%" bgColor=#FFFFFF colspan=5><IMG height=4 src="../images/spacer.gif"  border=0></TD> ');
  document.write('        </TR> ');
  document.write('      </TABLE> ');
  init2();
}