﻿function BuscaPrincipal(field) {
    var frase;
    if (field.value == "Digite o nome do evento ou local para buscar...")
        frase = "";
    else
        frase = field.value;

    window.location = "BuscaPrincipal.aspx?pesq=" + encodeURI(frase.toString());
}

function limparTextBox() {
    document.getElementById('txtBusca').value = "";

}

function pesquisar(e) {
    var Ucode = e.keyCode ? e.keyCode : e.charCode
    if (Ucode == 13) {
        BuscaPrincipal(document.getElementById('txtBusca'));
    }
}
