/* footer.js */

/*
This footer shows various company contact and copyright information,
together with a link back to the index page.
Insert this footer at the bottom of every HTML page.
Just before </body>, add this:
  <script src="footer.js"></script>
or if you're in the "people" subdirectory, go up one thus:
  <script src="../footer.js"></script>
*/

var logoname = rootdir + 'logo_sm.jpg';

/* The above logoname is different from the one used in header.js.
Other variables are set in header.js, which is therefore required to occur
above this in the page for this to work properly. */


document.write('<div class="footer">');

document.write('<hr />');  /* hr moved here Oct. 2007 */
document.write('<table border="0" align="center"><tr><td>');
document.write('<a href="' + indexname + '">');
document.write('<img src="' + logoname + '" width="138" height="50" alt="EKonomics LLC" border="0" />');
document.write('</a>');
document.write('</td><td width="5"></td><td>');
document.write('<span class="address">');
document.write('70'+'6 S Mil'+'ton Ave, Balti'+'more, MD 2'+'122'+'4-3'+'754, USA<br />');
document.write('+'+'1 504 '+'708 23'+'42; fax +'+'1 81'+'5 30'+'1 5449 <br />');
document.write('<a href="ma'+'ilto:e.k.ra'+'lph'+'@ekon'+'omicsllc.c'+'om">');
document.write('E.K.Ra'+'lph@EKon'+'omic'+'sLLC.com</a>');
document.write('</span>');
document.write('</td></tr></table>');

document.write('<br />');
document.write('<span class=copyright>');
document.write('Copyright ');
document.write('<span class=coname>EKonomics LLC</span>');
document.write(' 2001-2010. ');
document.write('<span class=coname>EKonomics LLC</span>');
document.write(' and the logo are service marks.');
document.write('</span>');
document.write('<br /><br />');

document.write('</div>');
