function ajaxGet(url,elemento_retorno,exibe_carregando)
{
	$.ajax({
	   type: "GET",
	   url: url,	  
	   async: true,
	   success: function(msg){
		   $(elemento_retorno).html(msg)
		 //alert( "Data Saved: " + msg );
	   }
	 });
	
}

function ajaxGet2(url,elemento_retorno,exibe_carregando)
{
	$.ajax({
	   type: "GET",
	   url: url,	  
	   async: false,
	   success: function(msg)
	   {
		   $(elemento_retorno).html(msg)
		 //alert( "Data Saved: " + msg );
	   }
	 });
	
}