  function ShowHide(elementid) {
      var div   = document.getElementById(elementid);
      var image = document.getElementById('expandcollapsereadmore');
      if (div.style.display == 'none'){
          div.style.display = '';
          image.src         = 'http://www.sinclairconsult.com/images/min.gif';
          div.innerHTML     = ReadMoreText();
      } else {
          div.style.display = 'none';
          image.src         = 'http://www.sinclairconsult.com/images/max.gif';
          div.innerHTML     = '';
      }
  }

  function ReadMoreText() {
    var value;
    value   = '<table cellspacing="0" cellpadding="0" border="0">';
    value  += '<tbody>';
    value  += '        <tr height="90">';
    value  += '            <td width="75"><img alt="arrow" align="left" src="http://www.sinclairconsult.com/Portals/0/mgt_64x68.gif" /></td>';
    value  += '            <td>';
    value  += '            <div style="vertical-align: middle"><strong>Management</strong> <img style="vertical-align: middle" alt="arrow" align="middle" src="http://www.sinclairconsult.com/Portals/0/black_arrow.gif" /> at the organizational level, assessing opportunities and risks include scoping out the opportunities to develop new investment approaches or products/services. Work in this field develops confidence by the business leaders that the sustainability strategy will benefit the organization, the business and the investors, benchmarking to market leaders in sustainability and investment and/or finance.</div>';
    value  += '            </td>';
    value  += '        </tr>';
    value  += '        <tr height="90">';
    value  += '            <td width="75"><img alt="arrow" align="left" src="http://www.sinclairconsult.com/Portals/0/mfg_64x68.gif" /></td>';
    value  += '            <td>';
    value  += '            <div style="vertical-align: middle"><strong>Manufacturing</strong> <img style="vertical-align: middle" alt="arrow" align="middle" src="http://www.sinclairconsult.com/Portals/0/blue_arrow.gif" /> new investment philosophy and practices will require re-tooling with the way investment decisions are made and measured. Asset management may need to be updated in order to integrate ESG factors, whether at the policy level, at the security selection, portfolio management or asset management levels. New sustainability portfolios may prefer fresh manufacturing designs, blending in-house with external competencies. Re-modeling manufacturing must be developed holistically to the complete decisions chain.</div>';
    value  += '            </td>';
    value  += '        </tr>';
    value  += '        <tr height="90">';
    value  += '            <td width="75"><img alt="arrow" align="left" src="http://www.sinclairconsult.com/Portals/0/mkt_64x68.gif" /></td>';
    value  += '            <td>';
    value  += '            <div style="vertical-align: middle"><strong>Marketing</strong> <img style="vertical-align: middle" alt="arrow" align="middle" src="http://www.sinclairconsult.com/Portals/0/r_arrow.gif" /> creativity and simplicity are hallmarks of good marketing. Whether for attention, advocacy or raising assets, the marketplace dynamics determine winners and losers. Marketing strategy evolves from understanding your audience and delivering the best offering. The offering for your customers must be understood and delivered by your market-facing employees or organizational partners. The litmus test is how the marketplace reacts to your sustainability themed products and services.</div>';
    value  += '            </td>';
    value  += '        </tr>';
    value  += '    </tbody>';
    value  += '</table>';

    return value;
  }