  <!--
  
  // 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 s = '';
    var varcolor ='';
 
      
    // Display ads in a table
    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) { 
      
if (i == 0) {
varcolor = '<div class="resultatenlijst2">';
}
if (i == 1) {
 varcolor = '<div class="resultatenlijst1">';
}
if (i == 2)
{
varcolor = '<div class="resultatenlijst2">';
}
if (i == 3)
{
varcolor = '<div class="resultatenlijst1">';
}
if (i == 4)
{
varcolor = '<div class="resultatenlijst2">';
}

     // Print "Ads By Google" -- include link to Google feedback page if available
     
    if (browser_getName =="ie") { 
     s += '';
    } else {
     s += '';
    }   
       
    s += ''+(varcolor)+'<div class="resultatenlijst_box1"><div class="ads_by_google">';
    s += '<a href="' + google_info.feedback_url + '"><font color="#000">Ads by Google<\/font><\/a>';     
    s += '<\/div><\/div>';

     s += '<div class="resultatenlijst_box2">' +
         '<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=\'\'">' +
         '<font color="#d44439"><b>' + google_ads[i].line1 + '&nbsp;<\/b><\/font>' +
         '<div class="resultatenlijst_titel_bottom"><span style="color:#D999">'+ google_ads[i].visible_url +'<\/span><\/div>' +
         '<\/a><\/div>'+
         '<div class="resultatenlijst_box3_colspan2"><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="color:#999999">' + google_ads[i].line2 + google_ads[i].line3  +
         '<\/span><\/a><\/div>' +
         '<div class="resultatenlijst_box5"><\/div><\/div>'  
         
    
      }
    }

    // For an image ad, display the image; there will be only one .
    if (google_ads[0].type == 'image') {
      s += '<div class="resultatenlijst_box1">' +
        '<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><\/div>';
    }

    // Finish up anything that needs finishing up
    s += '';
      
    if (browser_getName =="ie") { 
     s += '';
    } else {
     s += '';
    }  
    
    document.write(s);
    return;
  }

  -->
  