function google_ad_maquetar_anuncio(google_ad){

	return "<div style=\"margin-bottom:8px;font:normal 12px arial;color:#000000\" > "+
        		"	<a style=\"cursor:pointer;text-decoration: underline;font-weight:bold; color: #339933;\" onclick=\"javascript:top.location.href='" + google_ad.url + "'\" onmouseover=\"window.status='Ir a " + google_ad.visible_url + "'\" onmouseout=\"window.status=''\">" +
        				google_ad.line1+
        		"	</a> "+
        		"	<br/> " + 
        			google_ad.line2 + "&nbsp;" + google_ad.line3 +"<br>" + 
        		"	<a  style=\"cursor:pointer;font-weight:normal;color:#339933;\" onclick=\"javascript:top.location.href='" + google_ad.url + "'\" onmouseover=\"window.status='Ir a " + google_ad.visible_url + "'\" onmouseout=\"window.status=''\"> "+
        		"		<span>" + google_ad.visible_url + "</span> "+
        		"	</a> "+
        		"</div>";
}

function google_ad_request_done(google_ads) {
	
    if (google_ads.length == 0) {
        return;
    }

	var cajas = Array();
	var i ;

    var nCaja = 0;
    for(i=0;i<google_ads.length/2;i++){
    	cajas[i]="";
    }
	for(i=0;i<google_ads.length;i++){
		cajas[nCaja] += google_ad_maquetar_anuncio(google_ads[i]);
		if (i%2==1) nCaja++;
	}
    
    var cajaSuperior = document.getElementById("adTop");
    var cajaLateral = document.getElementById("adRight");
    var cajaInferior = document.getElementById("adBottom");
    var cajaMedio = document.getElementById("adMiddle");
    

    nCaja = 0;
    var s ;
    if(cajaSuperior != null && nCaja<cajas.length) {
    	cajaSuperior.style.marginBottom="10px";
    	s = "<div id=\"adsense_box_superior\" style=\"width:538px; padding-left: 4px;margin-left: 0px;border:solid 0px #000000;clear:left;\" ><div><a href=\"http://services.google.com/feedback/online_hws_feedback\" style=\"font: normal 10px arial;color: rgb(125, 125, 125); padding-top: 5px; padding-bottom: 5px;\">Anuncios Google</a>";
    	s += cajas[nCaja++] + "</div>";
    	cajaSuperior.innerHTML = s;
    }
    
    if(cajaLateral != null && nCaja<cajas.length) {
    	s = "<div id=\"adsense_box_lateral\" style=\"border:solid 0px #000000;width:auto;margin-bottom:15px; \" ><div class=\"cursosrel\"><a href=\"http://services.google.com/feedback/online_hws_feedback\" style=\"font: normal 10px arial;color: rgb(125, 125, 125); padding-top: 5px; padding-bottom: 10px;\">Anuncios Google</a>";
    	s += cajas[nCaja++] + "</div>";
    	cajaLateral.innerHTML = s;
    }
    if(cajaInferior != null && nCaja<cajas.length) {
    	s = "<div id=\"adsense_box_superior\" style=\"width:538px; padding-left: 4px;padding-bottom: 5px;padding-top: 5px;margin-left: 0px;margin-top: 5px;border:solid 0px #000000;clear:left;\" ><div><a href=\"http://services.google.com/feedback/online_hws_feedback\" style=\"font: normal 10px arial;color: rgb(125, 125, 125); padding-top: 5px; padding-bottom: 5px;\">Anuncios Google</a>";
    	s += cajas[nCaja++] + "</div>";
    	cajaInferior.innerHTML = s;
    }
    if(cajaMedio != null && nCaja<cajas.length) {
    	s = "<div id=\"adsense_box_medio\" style=\"width:538px; padding-left: 4px;padding-bottom: 5px;padding-top: 5px;margin-left: 0px;margin-top: 5px;border:solid 0px #000000;clear:left;\" ><div><a href=\"http://services.google.com/feedback/online_hws_feedback\" style=\"font: normal 10px arial;color: rgb(125, 125, 125); padding-top: 5px; padding-bottom: 5px;\">Anuncios Google</a>";
    	s += cajas[nCaja++] + "</div>";
    	cajaMedio.innerHTML = s;
    }
   
    return;
}


nItems = 0;
if (document.getElementById("adTop") != null) nItems +=2;
if (document.getElementById("adRight") != null) nItems +=2;
if (document.getElementById("adBottom") != null) nItems +=2;
if (document.getElementById("adMiddle") != null) nItems +=2;

if (nItems >0){
	
	google_ad_client = 'pub-9753010643607521'; 
		
	google_ad_channel = '8953765226'; 	
	
	if ( 	window.location.href.indexOf("/debates/") >0 ||
		 	window.location.href.indexOf("/documentos/")>0 || 
			window.location.href.indexOf("/imagenes/")>0 ||
			window.location.href.indexOf("/videos/")>0 		 
		){
			google_ad_channel = '1921899776'; 
	}else{
		if ( 	
			window.location.href.indexOf("/debate/")>0 ||
		 	window.location.href.indexOf("/documento/")>0 || 
			window.location.href.indexOf("/imagen/")>0 ||
			window.location.href.indexOf("/video/")	>0	 
		){
			google_ad_channel = '1142520398'; 
		}
	}
	
	google_ad_type='text'; 
	google_ad_output = 'js'; 
	google_max_num_ads = nItems; 
	google_feedback = 'on'; 
	google_language = 'es'; 
	google_encoding = 'iso-8859-1';
	google_ad_section = 'default'; 
	//google_adtest = 'on';  //asegúrese de eliminarlo después de realizar las pruebas
	                                   	
	document.write('<script language="JavaScript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>');
	
}