//Produção

//Título do anúncio
afc_tit_texto = 'Anúncios Patrocinados';

//Estilos

//DIV principal
afc_div = '\
background-color: #F9F7F8; \
width: 656px; \
font-size: 11px; \
padding: 7px; \
height: 100px; \
';

//DIV anúncio
afc_div_anuncio = '\
margin-right: 20px; \
cursor: pointer; \
float: left; \
';

//Título
afc_tit = '\
background-color: #D5D5D5; \
color: #990000; \
padding: 7px; \
margin: -7px -7px 0 -7px; \
font-weight: bold; \
';

//Linha 1
afc_lin1 = '\
margin: 12px 0 0 0; \
color: #990000; \
text-decoration:underline; \
font-weight: bold; \
';

//Linha 2
afc_lin2 = '\
margin: 2px 0 0 0; \
';

//Linha 3
afc_lin3 = '\
margin: 2px 0 0 0; \
color: #990000; \
';

//funções
moveContent = function(a, b) {
    var c = document.getElementById(a);
    var d = document.getElementById(b);
    if(d != null){
        d.appendChild(c);
        c.style.display='block';
    }
}
function styleById(id, estilo, valor) {
    var x = document.getElementById(id);
    x.style[estilo] = valor;
}
function google_ad_request_done(google_ads) {
    if (google_ads.length == 0) {
        return;
    }
    //Criação da DIV
    var s = '<div id="afc_links" style="'+afc_div+'">';

    if (google_ads[0].type == "text") {
        s += '<div style="'+afc_tit+';">'+afc_tit_texto+'</div>';
        if (google_ads.length > 0) {
            for(i=0; i < google_ads.length; ++i) {
                s+=
				'<div style="'+afc_div_anuncio+'" onclick="window.location.href=\''+google_ads[i].url+'\'">'+ //Div dos anúncios
                '<p style="'+afc_lin1+'">'+google_ads[i].line1+'</p>'+ //Título do anúncio
                '<p style="'+afc_lin2+'">'+google_ads[i].line2+'<br />'+ google_ads[i].line3+'</p>'+ //Texto do anúncio
                '<p style="'+afc_lin3+'">'+google_ads[i].visible_url+'</p>'+ //Link final do anúncio
                '</div>';
            }
        }
    }
    s += '</div>';
	
	
    document.write(s);

    //Tratamento das DIVs e apresentação 
    moveContent("afc_links","links_google");
	//styleById('links_google','float','left');
    styleById('links_google','display','block');
    //styleById('links_google','height',document.getElementById("afc_links").clientHeight+'px');
}

// Config Google Inicio
google_ad_client = 'ca-abril_js';
google_ad_channel = 'abd, viajeaqui, viajeaqui_ng-fotos';
google_ad_output = 'js';
google_max_num_ads = '3';
google_ad_type = 'text';
google_encoding = 'iso-8859-1';
google_safe = 'high';
google_adtest = 'off'; //Homolog
// Config Google Fim
