    <!--

      /*
      * This function retrieves the search query from the URL.
      */

      function GetParam( name )
      {
          var match = new RegExp(name + "=(.+)[&]","i").exec(location.search);
          if (match==null)
          {
              match = new RegExp(name + "=(.+)","i").exec(location.search);
          }

          if (match==null)
          {
              return null;
          }

          match = match + "";
          result = match.split(",");
          return result[1];
      }


      /*
       * This function is required. It processes the google_ads JavaScript object,
       * which contains AFS ads relevant to the user's search query. The name of
       * this function <i>must</i> be <b>google_afs_request_done</b>. If this
       * function is not named correctly, your page will not display AFS ads.
       */

      function google_afs_request_done(google_ads)
      {
          /*
           * Verify that there are actually ads to display.
           */
          var google_num_ads = google_ads.length;
          if (google_num_ads <= 0)
          {
              // return;
          }

          var wideAds   = "";   // Anzeigen Oben
          var narrowAds = "";   // Anzeigen Unten
          var skyAds    = "";   // Anzeigen Mitte

          // first 2 ads
          for(i = 0; i < 3; i++)
          {
                  // render a wide ad
                  wideAds+='<div class="go_2010">' +
                  
                  '<a class="go_link_2010" target="_blank" style=";cursor:pointer;" onmouseover="javascript:window.status=\'' +
                          google_ads[i].url + '\';return true;" ' +
                          'onmouseout="javascript:window.status=\'\';return true;" ' +
                          'href="' + google_ads[i].url + '">' +
                          '' + google_ads[i].line1 + '</a><br />' +
                          
                          '<a class="go_link_2010_klein" target="_blank" style="cursor:pointer;" onmouseover="javascript:window.status=\'' +
                          google_ads[i].url + '\';return true;" ' +
                          'onmouseout="javascript:window.status=\'\';return true;" ' +
                          'href="' + google_ads[i].url + '">' +
                          '' + google_ads[i].visible_url + '</a> - ' + 
                          
                          
                          '' + google_ads[i].line2 + '' +
                          
                          '</div><br />';
          }
          
          // second 2 ads
          for(i = 3; i < 6; i++)
          {
                  // render a wide ad
                  skyAds+='<div class="go_2010">' +
                  
                  '<a class="go_link_2010" target="_blank" style=";cursor:pointer;" onmouseover="javascript:window.status=\'' +
                          google_ads[i].url + '\';return true;" ' +
                          'onmouseout="javascript:window.status=\'\';return true;" ' +
                          'href="' + google_ads[i].url + '">' +
                          '' + google_ads[i].line1 + '</a><br />' +
                          
                          '<a class="go_link_2010_klein" target="_blank" style="cursor:pointer;" onmouseover="javascript:window.status=\'' +
                          google_ads[i].url + '\';return true;" ' +
                          'onmouseout="javascript:window.status=\'\';return true;" ' +
                          'href="' + google_ads[i].url + '">' +
                          '' + google_ads[i].visible_url + '</a> - ' + 
                          
                          
                          '' + google_ads[i].line2 + '' +
                          
                          '</div><br />';
          }          

          // third 2 ads
          for(i = 6; i < 9; i++)
          {
                  // render a wide ad
                  narrowAds+='<div class="go_2010">' +
                  
                  '<a class="go_link_2010" target="_blank" style=";cursor:pointer;" onmouseover="javascript:window.status=\'' +
                          google_ads[i].url + '\';return true;" ' +
                          'onmouseout="javascript:window.status=\'\';return true;" ' +
                          'href="' + google_ads[i].url + '">' +
                          '' + google_ads[i].line1 + '</a><br />' +
                          
                          '<a class="go_link_2010_klein" target="_blank" style="cursor:pointer;" onmouseover="javascript:window.status=\'' +
                          google_ads[i].url + '\';return true;" ' +
                          'onmouseout="javascript:window.status=\'\';return true;" ' +
                          'href="' + google_ads[i].url + '">' +
                          '' + google_ads[i].visible_url + '</a> - ' + 
                          
                          
                          '' + google_ads[i].line2 + '' +
                          
                          '</div><br />';
          }

          if (narrowAds != "")
          {
              narrowAds = '<div style="text-align:left;margin-bottom:3px;"><a target="_blank" style="text-decoration:none;font-size:11px;color:#484848;text-align:right;font-weight:normal" ' +
                          'href="http://services.google.com/feedback/online_hws_feedback">' +
                          'Google Anzeigen</a></div>' + narrowAds;
          }

          if (wideAds != "")
          {
              wideAds = '<div style="text-align:left;margin-bottom:3px;"><a target="_blank" style="text-decoration:none;font-size:11px;color:#484848;text-align:right;font-weight:normal" ' +
                        'href="http://services.google.com/feedback/online_hws_feedback">' +
                        'Google Anzeigen</a></div>' + wideAds;
          }

          if (skyAds != "")
          {
              skyAds = '<div style="text-align:left;margin-bottom:3px;"><a target="_blank" style="text-decoration:none;font-size:11px;color:#484848;text-align:right;font-weight:normal" ' +
                        'href="http://services.google.com/feedback/online_hws_feedback">' +
                        'Google Anzeigen</a></div>' + skyAds;
          }

          // Write HTML for wide and narrow ads to the proper <div> elements
          document.getElementById("wide_ad_unit").innerHTML    = wideAds;
          document.getElementById("narrow_ad_unit").innerHTML  = skyAds;
		  document.getElementById("sky_ad_unit").innerHTML     = narrowAds;
      }
