﻿function botaovenda(vIdImobiliaria, vFlag, vImovelPara)
	{
    	var vUrl = "http://www.rhincaimoveis.com.br/DesktopModules/CasaSoft.IOL/IndicadorDeImoveis.aspx?tipo=tipoimovel&ID="+vIdImobiliaria+"&flag="+vFlag+"&ImovelPara="+vImovelPara;
			$.ajax({
				type: "GET",
				url: vUrl,
				dataType: "xml",
				success: function(xml) {
				$("<option value=''>Qualquer</option>").appendTo("#tipoimovel");
				$(xml).find("tipoimovel").each(function() {
					var cod = $(this).attr("codigo");
					var descri = $(this).attr("descricao");
					$('<a class=botao href=/tabid/904/Default.aspx?Iid=6150&fnl=A&tpr=V&otp=desc&tim='+cod+'>&nbsp;&nbsp;'+descri+'</a>').appendTo('#wrapVenda');
			  });
		}
	  });
  }
  
function botaolocacao(vIdImobiliaria, vFlag, vImovelPara)
	{
    	var vUrl = "http://www.rhincaimoveis.com.br/DesktopModules/CasaSoft.IOL/IndicadorDeImoveis.aspx?tipo=tipoimovel&ID="+vIdImobiliaria+"&flag="+vFlag+"&ImovelPara="+vImovelPara;
			$.ajax({
				type: "GET",
				url: vUrl,
				dataType: "xml",
				success: function(xml) {
				$(xml).find("tipoimovel").each(function() {
					var cod = $(this).attr("codigo");
					var descri = $(this).attr("descricao");
					$('<a class=botao href=/tabid/905/Default.aspx?Iid=6150&fnl=A&tpr=L&otp=desc&tim='+cod+'>&nbsp;&nbsp;'+descri+'</a>').appendTo('#wrapLocacao');
			  });
		}
	  });
  }
