﻿function SelecionaTipoBox(Valor, Total) {
    for (x = 1; x <= Total; x++) {
        document.getElementById("layer_box_tipo" + x + "_imagem_check").style.display = "none";
    }
    document.getElementById("layer_box_tipo" + Valor + "_imagem_check").style.display = "block";
    document.getElementById("layer_box_TipoBox").value = Valor;
}

function SelecionaFinalidadeBox(Valor, Total) {
    for (x = 1; x <= Total; x++) {
        document.getElementById("layer_box_finalidade" + x + "_imagem_check").style.display = "none";
    }
    document.getElementById("layer_box_finalidade" + Valor + "_imagem_check").style.display = "block";
    document.getElementById("layer_box_FinalidadeBox").value = Valor;
}

function OKBox() {
    if (document.getElementById("layer_box_FinalidadeBox").value.length == 0) {
        alert(document.getElementById("msg_erro_finalidade").value.replace("[br][br]", "\n\n"));
        return;
    }
    if (document.getElementById("layer_box_TipoBox").value.length == 0) {
        alert(document.getElementById("msg_erro_tipo").value.replace("[br][br]", "\n\n"));
        return;
    }
    Tipo = document.getElementById("layer_box_TipoBox").value.toLowerCase();
    Finalidade = document.getElementById("layer_box_FinalidadeBox").value.toLowerCase();
    if (Finalidade == "1") {
        Finalidade = "venda";
    }
    if (Finalidade == "2") {
        Finalidade = "locacao";
    }
    if (Tipo == "1") {
        Tipo = "apartamento";
    }
    if (Tipo == "2") {
        Tipo = "casa";
    }
    if (Tipo == "3") {
        Tipo = "terreno";
    }
    if (Tipo == "4") {
        Tipo = "comercial";
    }
    location.href = "/venda-ou-alugue-seu-imovel/" + Finalidade + "/" + Tipo;
}
