  <!--
  
  // This function displays the ad results.
  // It must be defined above the script that calls show_ads.js
  // to guarantee that it is defined when show_ads.js makes the call-back.

  function google_ad_request_done(google_ads) {

    // Proceed only if we have ads to display!
    if (google_ads.length < 1 )
      return;

    var firstAdUnit = '';
    var secondAdUnit = '';
      
    // Display ads in a table
    var s = '<table>';
 
    // Print "Ads By Google" -- include link to Google feedback page if available
    s += '<tr><td align="left">';
    s += '<div style="text-align:left;font-size:10pt">';
    
    if (google_info.feedback_url) {
      s += '<a href="' + google_info.feedback_url + '">Google-Anzeigen</a>';
    } else {
      s += 'Google-Anzeigen';
    }
        
    s += '</div></td></tr>';
    firstAdUnit = secondAdUnit = s;
    
    // For text ads, display each ad in turn.
    // In this example, each ad goes in a new row in the table.
    if (google_ads[0].type == 'text') { 
      for(i = 0; i < google_ads.length; ++i) {
       s = '<tr><td nowrap style="text-align:left;">' +
         '<a style="cursor:pointer;cursor:hand;text-decoration:none" onclick="javascript:top.location.href=\'' + google_ads[i].url + '\'" onmouseover="window.status=\'gehe zu ' + google_ads[i].visible_url + '\'" onmouseout="window.status=\'\'">' +
         '<span style="text-decoration:underline;font-size:20pt">' + google_ads[i].line1 + '<br></span>' +
         '<span style="color:#000000;font-size:16pt">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<br></span>' +
         '<span style="color:#008000;font-size:14pt">' + google_ads[i].visible_url +
         '</span></a><br></td></tr>';
       if(i < google_ads.length/2) {
         firstAdUnit += s;
       } else {
         secondAdUnit += s;
       }
      }
    }

    // For an image ad, display the image; there will be only one .
    if (google_ads[0].type == 'image') {
      s = '<tr><td align="center">' +
        '<a href="' + google_ads[0].url + '"style="text-decoration: none">' +
        '<img src="' + google_ads[0].image_url + 
        '" height="' + google_ads[0].height + 
        '" width="' + google_ads[0].width +
        '" border="0"></a></td></tr>';
      firstAdUnit = s;
    }

    // Finish up anything that needs finishing up
    s = '</table>';
    firstAdUnit += s;
    secondAdUnit += s;
    
    document.getElementById("firstAdUnit").innerHTML += firstAdUnit;
    if (google_ads[0].type != 'image')
      document.getElementById("secondAdUnit").innerHTML += secondAdUnit;

    return;
  }




    // This script sets the attributes for requesting ads.

  /*
   * Das von den folgenden Seiten zurückgegebene JavaScript verwendet
   * die oben zugewiesenen Parameterwerte, um ein Array mit Anzeigenobjekten
   * zu füllen. Sobald das Array gefüllt ist, ruft das,
   * JavaScript die Funktion google_ad_request_done
   * auf, um die Anzeigen zu schalten.
   */
-->

