//FORMATA CPF
function FormataCPF(e,form,valor,nome)
{
	var tecla,Str;
	if (valor.length == 3){	Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "." ;';eval(Str);}
	if (valor.length == 7){	Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "." ;';eval(Str);}
	if (valor.length == 11){Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "-" ;';eval(Str);}
	
	if(document.all)tecla = event.keyCode;
	else return true;
	if(tecla > 47 && tecla < 58 )	return true;
	if(tecla == 13 )return true;	
	return false;
}

//FORMATA CNPJ
function FormataCNPJ(e,form,valor,nome)
{
	var tecla,Str;
	if (valor.length == 8){	Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "/" ;';eval(Str);}
	if (valor.length == 13){	Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "-" ;';eval(Str);}
	
	if(document.all)tecla = event.keyCode;
	else return true;
	if(tecla > 47 && tecla < 58 )	return true;
	if(tecla == 13 )return true;	
	return false;
}

//FORMATA DATA
function FormataDATA(e,form,valor,nome)
{
	var tecla,Str;
	if (valor.length == 2){	Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "/" ;';eval(Str);}
	if (valor.length == 5){	Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "/" ;';eval(Str);}
	
	if(document.all)tecla = event.keyCode;
	else return true;
	if(tecla > 47 && tecla < 58 )	return true;
	if(tecla == 13 )return true;	
	return false;
}


//FORMATA CEP
function FormataCEP(e,form,valor,nome)
{
	var tecla,Str;
	if (valor.length == 2){	Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "." ;';eval(Str);}
	if (valor.length == 6){	Str='document.'+form+'.'+nome+'.value = document.'+form+'.'+nome+'.value + "-" ;';eval(Str);}
	
	if(document.all)tecla = event.keyCode;
	else return true;
	if(tecla > 47 && tecla < 58 )	return true;
	if(tecla == 13 )return true;	
	return false;
}

