// Get Adwords 
jQuery(document).ready(function() {
      if( jQuery.cookie('show_overlay_session_en')  != "true"){
        jQuery('#contenttext').after("<div id=\"overlay\" style=\"display:none; margin:35px 10px 0 0;\"><h1>Disclaimer</h1><p>The following information is intended for investors who are able to calculate and assume any increased risks relating to an investment in shares of this company. The following information does not constitute an offer for sale or a request for submission of an offer for purchase of or subscription to shares of the company.</p><p>The shares of this company are not listed in the Regulated Market for stock exchange trading or included in the Regulated Market; they are admitted for trading on the Open Market of the Frankfurt Stock Exchange. Investors should be aware that the uniform stringent requirements for transparency and strict provisions for the protection of investors applicable to organised markets throughout Europe do not apply to the Open Market (Regulated Unofficial Market) of the Frankfurt Stock Exchange.</p><p>Copying and forwarding information on the following website is strictly prohibited.</p><p>Please click on the \"I accept\" button to confirm that you have read the above warning notices and accept the warnings. After clicking the button you will be able to access the website content. </p><form ><input id=\"overlay_ok\" type=\"button\" value=\"I accept\" /></form></div>");
        jQuery('#contenttext').hide();
        jQuery('#overlay').show();
        jQuery('#overlay_ok').click(function() {
          jQuery('#contenttext').show();
          jQuery('#overlay').hide();
          jQuery.cookie('show_overlay_session_en',"true", { path: '/', expires: null });
        });
      };
});