﻿var tempo = 5;
function inserirTexto(campo, texto) {
    if (campo.value == "")
        campo.value = texto;
}

function limparTexto(campo, texto) {
   if (campo.value == texto)
        campo.value = "";
}

function agendarVisita(campo) {
    var txt = document.getElementById(campo);
    if (txt != null) {
        txt.focus();
        txt.style.backgroundColor = "#F7FEDA";
    }
}

function desabilitarBotao(valor) {
    botao = document.getElementById("ctl00_Centro_btnSalvar");
    if (typeof (Page_ClientValidate) == 'function' && Page_ClientValidate() == false)
            return false;
    else if (botao != null)
        botao.disabled = true;
}

function MascaraMoeda(objTextBox, SeparadorMilesimo, SeparadorDecimal, e){
    var sep = 0;
    var key = '';
    var i = j = 0;
    var len = len2 = 0;
    var aux = aux2 = '';
    strCheck = '0123456789';
    var whichCode = (window.Event) ? e.which : e.keyCode;
    if (whichCode == 13 || whichCode == 8 || whichCode == 11 || whichCode == 0) return true;
    if (key < 48 && key > 57) {return false; }
    key = String.fromCharCode(whichCode);
    len = objTextBox.value.length;
    //for(i = 0; i < len; i++)
     //   if ((objTextBox.value.charAt(i) != '0') && (objTextBox.value.charAt(i) != SeparadorDecimal)) break;
    aux = '';
    for(i = 0; i < len; i++)
        if (strCheck.indexOf(objTextBox.value.charAt(i))!=-1) aux += objTextBox.value.charAt(i);
    aux += key;
    len = aux.length;
    if (len == 0) objTextBox.value = '';
    if (len <= 3) objTextBox.value = aux;//'0'+ SeparadorDecimal + '0' + aux;
    //if (len == 2) objTextBox.value = aux;//'0'+ SeparadorDecimal + aux;
    if (len > 3) {
        aux2 = '';
        for (j = 0, i = len-1; i >= 0; i--) {
            if (j == 3) {
                aux2 += SeparadorMilesimo;
                j = 0;
            }
            aux2 += aux.charAt(i);
            j++;
        }
        objTextBox.value = '';
        len2 = aux2.length;
        for (i = len2 - 1; i >= 0; i--)
            objTextBox.value += aux2.charAt(i);
       // objTextBox.value += SeparadorDecimal + aux.substr(len - 2, len);
    }
    return false;
}

