 function google_ad_request_done(google_ads) {

    // Proceed only if we have ads to display!
    if (google_ads.length < 1 )
      return;

    var s = '';

    // Display ads in a table
    s += '<table cellpadding="5" width="100%" class="text">';

    // Print "Ads By Google" -- include link to Google feedback page if available
    s += '<tr><td align="left" bgcolor="#99AAB6">' +
      '<div style="text-align:left;font-size:8pt;color:#000000;font-weight:bold">';
    if (google_info.feedback_url) {
      s += '<a href="' + google_info.feedback_url + '" class="navi_weiss">Google-Anzeigen</a>';
    } else {
      s += 'Google-Anzeigen';
    }
    s += '</div></td></tr>';

 
    // 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;" bgcolor="#F2F7FA">' +
         '<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:9pt;color:#990000;font-weight:bold">' + google_ads[i].line1 + '<br></span>' +
         '<span style="color:#333333;font-size:9pt">'  + google_ads[i].line2 + '&nbsp;' + google_ads[i].line3 + '<br></span>' +
         '<span style="color:#666666;font-size:8pt">' + google_ads[i].visible_url +
         '</span></a><br></td></tr>';
      }
    }

    // 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>';
    }

    // Finish up anything that needs finishing up
    s += '</table>';
    document.write(s);
    return;
  }

    // This script sets the attributes for requesting ads.
    google_ad_client = "pub-6991686259473923";         
    google_max_num_ads = 5;         
    google_feedback = "on";
    google_hints="Stellenangebote";
    google_ad_output = "js";
    google_ad_type  = "text_image";
    google_image_size = "500x500";
    google_encoding = "UTF-8";
    google_ad_channel ="2903038835";

