function BuscarLoja(id) {
    textoBusca = document.getElementById(id).value;

    if (textoBusca.length > 0)
        location.href = 'lojas.aspx?Busca=' + textoBusca;
}

function campoBuscaIn(id) {
    txtBusca = document.getElementById(id);
    if (txtBusca.value == "ENCONTRE SUA LOJA")
        txtBusca.value = "";
}

function campoBuscaOut(id) {
    txtBusca = document.getElementById(id);
    if (txtBusca.value.length == 0)
        txtBusca.value = "ENCONTRE SUA LOJA";
}

function abrirFoto(titulo, url, w, h) {
    Shadowbox.init({
        handleOversize: "none"
    });
    Shadowbox.open({ type: 'img', title: titulo, content: url, height: h, width: w });
}

function abrir(titulo, url, w, h) {
    Shadowbox.init();
    Shadowbox.open({ type: 'iframe', title: titulo, content: url, height: h, width: w });
}
