var InitDomain = function() { try { Forms_Set() } catch (a) { alert(a) } }, Forms_Set = function() {
    $(".date").mask("99/99/9999"); $(".datetime").mask("99/99/9999 99:99:99"); $(".cpf").mask("999.999.999-99", { completed: function () { } }); $(".cnpj").mask("99.999.999/9999-99"); $(".telefone").mask("9999-9999"); $(".telefone_completo").mask("(99)9999-9999"); $(".time").mask("99:99:99"); $(".shorttime").mask("99:99"); $(".cep").mask("99999-999"); $(".number").bind("keyup", function () {
        this.value = this.value.replace(/[^\d]/gi,
"")
    }); $(".alpha").bind("keyup", function() { this.value = this.value.replace(/[^\w\s\u00e1\u00c1\u00e3\u00c3\u00e2\u00c2\u00e0\u00c0\u00e9\u00c9\u00ea\u00ca\u00ed\u00cd\u00f3\u00d3\u00f5\u00d5\u00f4\u00d4\u00fa\u00da\u00fc\u00dc\u00e7\u00c7]|\d/gi, ""); this.value = this.value.replace(/\s{2,}/gi, " ") }); $(".alnum").bind("keyup", function() {
        this.value = this.value.replace(/[^\w\d\s\u00e1\u00c1\u00e3\u00c3\u00e2\u00c2\u00e0\u00c0\u00e9\u00c9\u00ea\u00ca\u00ed\u00cd\u00f3\u00d3\u00f5\u00d5\u00f4\u00d4\u00fa\u00da\u00fc\u00dc\u00e7\u00c7]/gi,
"")
    }); $(".view-only").attr("disabled", true); $(".money").maskMoney({ symbol: "R$", decimal: ",", thousands: ".", precision:2 }); $(".percent").maskMoney({ symbol: "", decimal: ",", thousands: "." })
}; function ExibirAlerta(a, b) { var c = parseInt(b); $.jGrowl(a, { position: "bottom-left", closer: true, header: c >= 0 ? "Aviso" : b, closerTemplate: "<div>[ fechar tudo ]</div>" }); return false };
