﻿function Pesquisa() {

    /* ********************************************************************************* */
    this.Texto = function(query) {
        if (query != "") {
            window.location = "/Pesquisa.aspx?q=" + query;
        }
        else {
            document.getElementById("divPesquisaStatus").innerHTML = "!";
        }
    }
    /* ********************************************************************************* */
}
