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 = "";   // wide ad unit html text
          var narrowAds = "";   // narrow ad unit html text

  		wideAds+='';


          for(i = 0; i < google_num_ads; i++)
          {
              if (google_ads[i].type=="text/wide")
              {
                  // render a wide ad
                  wideAds+='';
				  	
									  
				  wideAds+='<li style="float:left; width:320px; text-align:left; margin-left:5px; padding-left:5px; "><a target="_blank" style="text-decoration:none" onmouseover="javascript:window.status=\'' +
                          google_ads[i].url + '\';return true;" ' +
                          'onmouseout="javascript:window.status=\'\';return true;" ' +
                          'href="' + google_ads[i].url + '">' +
                          '<strong>' + google_ads[i].line1 + '.</strong></a><br>  ' +
                          '<span class="verdana12"> ' + google_ads[i].line2 + '</span><br>' +
                          '<a target="_blank" style="text-decoration:none" onmouseover="javascript:window.status=\'' +
                          google_ads[i].url + '\';return true;" ' +
                          'onmouseout="javascript:window.status=\'\';return true;" ' +
                          'href="' + google_ads[i].url + '">' +
                          '<span class="ad_url_morado">' + google_ads[i].visible_url + '</span></a></li>';
              }

              
          }
		  
		  	  wideAds+='<a style="text-decoration:none" ' +
                          'href="http://services.google.com/feedback/online_hws_feedback">' +
                          '<div class="ad_header" style="text-align:left; float:right; margin:-6px 4px 0px 0px;">Ads by Google</div></a>';
						
          // 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 = narrowAds;
      }

