// footer.js
// stores the name to put into the footer copyright
var addCopyright = true;
var footerName = "The material appearing in this web site is for informational purposes only and is not legal advice. Transmission of this information is not intended to create, and receipt does not constitute, an attorney-client relationship. The hiring of a lawyer is an important decision that should not be based solely upon advertisements, certification, specialization, or self-proclaimed expertise. Before you decide, ask us to send you free information about our qualifications and experience. The information provided herein is intended only as general information which may or may not reflect the most current legal developments. This web site is not intended to be advertising and we do not wish to represent anyone desiring representation based upon viewing this web site in a state where this web site fails to comply with all laws and ethical rules of that state.";
if (addCopyright)
document.write(" by " + footerName + " &#169; 2011 ");

