//Processador e validador ==========================================================================
$(document).ready(function(){
var rand = Math.random();
var ent = document.getElementById('ent').value;
var cod = document.getElementById('cod').value;
var sen = document.getElementById('sen').value;

var url =  'http://www.fcdlpara.com.br/fcdl/validador_spc.php?ent='+ent+'&cod='+cod+'&sen='+sen+'&rand='+rand;
$.getScript(url, function(){

//document.getElementById('CACWEBACESSO').submit();

return false;

});



});


function validar(campo,valor){
if(campo == 'ent'){
	document.getElementById('ent').value = valor;
}	

if(campo == 'cod'){
	document.getElementById('cod').value = valor;
}	
	
if(campo == 'sen'){
	document.getElementById('sen').value = valor;
}	

}