<!--
//Formata CPF

var ie=(((navigator.userAgent.indexOf("MSIE")>-1)||(navigator.userAgent.indexOf("Mozilla/5.0")>-1))&&navigator.userAgent.indexOf("Opera")==-1?true:false);
var ns=(navigator.userAgent.indexOf("Netscape")>-1&&navigator.userAgent.indexOf("Opera")==-1?true:false);

function setcpf(input, evento){
	var tecla = (evento.keyCode ? evento.keyCode: evento.which ? evento.which : evento.charCode)
	if ((tecla < 48) || (tecla > 57)){
		evento.returnValue = false; 
		return false;
	}
	else{ 
		if ((input.value.length == 3) || (input.value.length == 7)){
			input.value=input.value + "." ;
		}
		if (input.value.length == 11){
			input.value=input.value + "-" ;
		}
	}	
	return true;
}

// onKeyPress="setcpf(this,event);"
//-->