//Producao

//Titulo do anuncio
afc_tit_texto = 'Links Patrocinados:';

//Estilos

//DIV principal
afc_div = '\
width: 226px; \
height: 221px; \
font-size: 11px; \
padding: 0; \
font-family: Arial,Helvetica,sans-serif; \
border: solid #CED9E3 0px; \
background-color: #EAEAEA; \
';

//DIV anuncio
afc_div_anuncio = '\
margin: 0 0 0 8px; \
cursor: pointer; \
';

//Titulo
afc_tit = '\
color: #CC9900; \
font-weight: bold; \
font-size: 16px; \
margin-bottom: 2px; \
';

//Linha 1
afc_lin1 = '\
margin: 12px 0 0 0; \
text-decoration:none; \
font-weight: bold; \
color: #CC9900; \
';

//Linha 2
afc_lin2 = '\
margin: 0 0 0 0; \
line-height: 13px; \
';

//Linha 3
afc_lin3 = '\
margin: 0 0 0 0; \
color: #000000; \
font-weight: bold; \
text-decoration:underline; \
line-height: 13px; \
';

//funcoes
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;
    }
    //Criacao 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 anuncios
                '<p style="'+afc_lin1+'">'+google_ads[i].line1+'</p>'+ //Titulo do anuncio
                '<p style="'+afc_lin2+'">'+google_ads[i].line2+'<br />'+ google_ads[i].line3+'</p>'+ //Texto do anuncio
                '<p style="'+afc_lin3+'">'+google_ads[i].visible_url+'</p>'+ //Link final do anuncio
                '</div>';
            }
        }
    }
    s += '</div>';
	
	
    document.write(s);

    //Tratamento das DIVs e apresentacao
    moveContent("afc_links","links_google");
    styleById('links_google','display','block');
}

// Config Google Inicio
google_ad_client = 'ca-abril_js';
google_ad_channel = 'abd, viajeaqui, viajeaqui_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'; //Producao
// Config Google Fim