function mostra_estados(){
    var windowX = window.screen.width;
    var windowY = window.screen.height;
    //resizeTo( Math.ceil( largura ) , Math.ceil( altura ) );
    document.getElementById('select_estados').style.display = "block";
    posicao = 0;
    if (windowX > 766){
        posicao = windowX -  766;
        posicao = Math.ceil(posicao / 2);
        try {
            ajax = new ActiveXObject("Microsoft.XMLHTTP");
            posicao = parseInt(posicao) + 175;
        }
        catch(e){
            try {
                posicao = parseInt(posicao) + 178;
                document.getElementById('select_estados').style.top = "413px";
                ajax = new ActiveXObject("Msxml2.XMLHTTP");
            }
            catch(ex){
            }
        }
		
    }
    document.getElementById('select_estados').style.left = posicao + "px";
}
function ocultar_estados(){
    document.getElementById('select_estados').style.display = "none";
}

function mostra_estados_onde_encontrar(){
    var windowX = window.screen.width;
    var windowY = window.screen.height;
    //resizeTo( Math.ceil( largura ) , Math.ceil( altura ) );
    document.getElementById('select_estados_onde_encontrar').style.display = "block";
    posicao = 0;
    if (windowX > 766){
        posicao = windowX -  766;
        posicao = Math.ceil(posicao / 2);
        try {
            ajax = new ActiveXObject("Microsoft.XMLHTTP");
            posicao = parseInt(posicao) + 203;
        }
        catch(e){
            try {
                posicao = parseInt(posicao) + 178;
                document.getElementById('select_estados_onde_encontrar').style.top = "413px";
                ajax = new ActiveXObject("Msxml2.XMLHTTP");
            }
            catch(ex){
            }
        }
		
    }
    document.getElementById('select_estados_onde_encontrar').style.left = posicao + "px";
}
function ocultar_estados_onde_encontrar(){
    document.getElementById('select_estados_onde_encontrar').style.display = "none";
}

function troca_foto_grande(id,foto_nova){
    document.getElementById(id).src=foto_nova;
}
function troca_download(id,arquivo_novo){
    document.getElementById(id).href   = arquivo_novo;
    document.getElementById(id).target = '_blank';
}