if (document.location.hostname == "10.1.1.30") {
	
	var basepath = "http://10.1.1.30/santaclara/";
	
} else {
	
	var basepath = "http://www.imobiliariasantaclara.com.br/";
	
}


function enqueteSite(action,codenq) {

	if (action == '0') {
		if (jQuery("#container_enquete input:checked").length == 0) {
			alert("Por favor! Escolha uma das opções disponíveis!");
		}
	}
	
	opcao = jQuery("#container_enquete input:checked").val();
	
	jQuery.ajax({
		url:basepath+"ajax/enqueteSite.asp",
		type:"GET",
		data:"acao=" + action + "&codenq=" + codenq + "&opcao=" + opcao,				
		success:function(response) {
			
			jQuery("#enquete").html(response);
	
		}
		
	});
		
	
}

function changeAba(obj){
	
	$("#aba_search strong").removeClass("selected");
	$("#"+obj).addClass("selected");
	
	if(obj=='aba_venda') {
		
		$("#oq").val("2");
		
	} else {
	
		$("#oq").val("1");
		
	}
	
}

function ExibirDetalhe(imovel_id) {

	location.href = basepath + "detalhe.asp?imovel_id=" + imovel_id;
		
	
}

// Pop-Up
function openPopUp(urlarquivo) {
	
	window.open(urlarquivo,'janPopup','toolbar=no,location=no,scrollbars=yes,width=305,height=250,resizable=yes,left=60,top=90');
	
}