﻿var helper = function() {
    return {
        SetCssBG: function() {
            $.ajax({
                url: '/home/arquivobd.ashx',
                data: { "tabela": "Fundos" },
                cache: false,
                success: function(html) {
                    $("body").css({ 'backgroung-image': 'url("+html+")' });
                }
            });
        },
        AjustarInteiro: function(e) {
            var tecla = (window.event) ? event.keyCode : e.which;
            if ((tecla > 47 && tecla < 58) || tecla == 13) return true;
            else {
                if (tecla != 8) return false;
                else return true;
            }
        },
        AjustarCep: function(input, e) {
            var tecla = (window.event) ? event.keyCode : e.which;
            alert(tecla);
            if ((tecla > 47 && tecla < 58) || tecla == 13) return true;
            else {
                if (tecla != 8) return false;
                else {
                    if (input.value.length == 5) {
                        input.value = input.value + "-";
                        return true;
                    }
                    return true;
                }
            }
        },
        SelectCheck: function() {
            $("input:checkbox").each(function() { this.checked = true; });
        },
        NotSelectCheck: function() {
            $("input:checkbox").each(function() { this.checked = false; });
        },
        validarEmail: function() {
        if (email.length != 0) {
            if (email.indexOf(".") != -1 || email.indexOf("@") != -1) {
                if (email.lastIndexOf(".") > email.indexOf("@")) {
                    return true;
                } else {
                    return false;
                }
            } else {
                return false;
            }
        } else {
            return false;
        }
        }
    };
} ();

 
