//********************************************************************************************
// File: footer.js
// Desc: Responsible for creating the page footer information.  This is done in Javascript so
//       it can be included into each page for a consistent template.
//********************************************************************************************

// complete the content area
document.writeln('              </form>');
document.writeln('            </td>');
document.writeln('          </tr>');
document.writeln('        </table>');
document.writeln('      </td>');
document.writeln('    </tr>');

// create the footer bar
document.writeln('    <tr>');
document.writeln('      <td>&nbsp;</td>');
document.writeln('      <td align="center">');
document.writeln('        <div class="tagline">');
document.writeln('          <b>Live the Laughter...Read Kimberly Llewellyn.</b>');
document.writeln('        </div><br>');
document.writeln('        <div class="copyright">');
document.writeln('          Copyright &copy; 2001, Kimberly Llewellyn');
document.writeln('        </div>');
document.writeln('      </td>');
document.writeln('    </tr>');
document.writeln('  </table>');

// Google analytics tracking code
// As suggested in Steve Souder's talk
// See:http://google-code-updates.blogspot.com/2009/03/steve-souders-lifes-too-short-write.html
document.writeln('<script type="text/javascript">');
document.writeln('function gaSSDSLoad (acct) {  var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."),      pageTracker,      s;  s = document.createElement(\'script\');  s.src = gaJsHost + \'google-analytics.com/ga.js\';  s.type = \'text/javascript\';  s.onloadDone = false;  function init () {    pageTracker = _gat._getTracker(acct);    pageTracker._trackPageview();  }  s.onload = function () {    s.onloadDone = true;    init();  };  s.onreadystatechange = function() {    if ((\'loaded\' === s.readyState || \'complete\' === s.readyState) && !s.onloadDone) {      s.onloadDone = true;      init();    }  };  document.getElementsByTagName(\'head\')[0].appendChild(s);}');
document.writeln('gaSSDSLoad("UA-8424594-1");');
document.writeln('</script>');

document.writeln('</body>');
document.writeln('</html>');


