
  function google_ad_request_done(google_ads) {

    var lista = 'www.unionradio.net,www.forex.com,www.lasmejoresescorts.com.ar,www.tramps.com.ar,www.miargentinagay.com,www.adoos.com.ar';
    var miArray = lista.split(',');
    
    //Voy a cortar el array de google si vienen cosas malas
    for(z=0; z < miArray.length ; ++z){
    	for(p=0; p < google_ads.length; ++p){
		if(miArray[z]==google_ads[p].visible_url){
			google_ads.splice(p,1);
			p=p-1;
		}
	}
    }

    
    // Proceed only if we have ads to display!
    if (google_ads.length < 1 )
      return;

      document.write("<div class='limpiar'></div>");
   // Display ads in a table
    document.write("<div id='google_noticia'>");

    document.write("<div class='cab_google estirar'>");
    document.write("<h2><a href='" +google_info.feedback_url+"' target='_blank'>Publicidad por Google</a></h2>");
	document.write("<p><a href='/google_adwords.html' onClick=\"window.open(this.href, this.target, 'width=700,height=250'); return false;\">&#191;Que es esto?</a></p>");
    document.write("</div>");
                              
    // 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') {
      document.write("<ul>");
      for(i = 0; i < google_ads.length; ++i) {

	document.write("<li>");

	 var on_mouse = "onMouseOver=\"window.status='Ir a "+google_ads[i].visible_url+"';return true;\" onMouseOut=\"window.status='';return true;\"";
	document.write("<h3><a href='" + google_ads[i].url + "' " + on_mouse + " target='_blank'>" + google_ads[i].line1 + "</a></h3>");
	document.write("<h4><a href='" + google_ads[i].url + "' " + on_mouse + " target='_blank'>" + google_ads[i].visible_url + "</a></h4>&nbsp;");
	document.write("<p>" + google_ads[i].line2   + " " +google_ads[i].line3 + "</p>");

	document.write("</li>");

					    					   	
      }
      document.write("</ul>");
    }


    // Finish up anything that needs finishing up
    document.write ("</div>");
  }


