﻿// JScript File
//Formatar entrada
function Formatar(src, mask)
{
    var i = src.value.length;
    var saida = mask.substring(0,1);
    var texto = mask.substring(i)
    if (texto.substring(0,1) != saida) 
    {
         src.value += texto.substring(0,1);
    }
}
//limita quantida de caracteres asp.net
function validaValor(source, args)
{
    if (args.Value <= 100)
    args.IsValid = false;
    else
    args.IsValid = true;
}
//Somente numeros
function SomenteNumero(e){
    var tecla=(window.event)?event.keyCode:e.which;
    if((tecla > 47 && tecla < 58)) return true;
    else{
    if (tecla != 8) return false;
    else return true;
    }
}
////Focar TextBox
//function SetFocus( idToFocus )
//{
//	var TextBox = document.getElementById( idToFocus );
//	TextBox.focus();
//}
////Focar Radio NF
//function SetRadio( idToChange )
//{
//	var RadioButtonList = document.getElementById( idToChange );
//	//RadioButtonList.Itens[1].Selected = true; //problema
//}
// Abre Popup
//function ShowPopup()
//{
//	window.open('AjudaRapida.aspx?prix=', '', 'width=450, height=440, resizable=no, scrollbars=yes, disabletop=y');
//}
//Popup Custom
//function OpenPopUp(URL, NAME, OPTIONS) 
//{
//	window.open(URL, NAME, OPTIONS)
//}

