$(document).ready(function(){
	$('#BTO1').click(function(){			
		callStat();
	});
	
	$('#STAT').keypress(function(event) {
	  if (event.keyCode == '13') {
		 event.preventDefault();
		 callStat();
	   }
	});
});

// FUNCAO REDIRECIONAR COMBO
function setRedirect(obj,querystring){
	//var objValue = $('#'+obj+'').options[ $('#'+obj+'').selectedIndex ].value;
	var objValue = document.getElementById(obj).options[document.getElementById(obj).selectedIndex].value;
	
	document.location = objValue;
	
}

function callStat(){
	$('#BTO1').ajaxStart(function(){
		$('#stat-result .load').html('<img src="/contents/ico/loading.gif" alt="Criando url" /><br />pesquisando aguarde ...');
	})
	$('#BTO1').ajaxStop(function(){
		$('#stat-result .load').html('');
	})
	$.post(
	  '/tools/qry_stats',
	  {codurl:$('#STAT').val()},
	  function(data){
		  $('#stat-result').html(data);
	})
}
