// JavaScript Document
function fechar(id){
	document.getElementById(id).style.display="none";
}

function DetalhesImovel(id){
	var id = id;
	window.location.href = "index.asp?id="+id+"";
}

function DetalhesEmp(id, nome){
	var id = id;
	var nome = nome;
	window.open('http://danielandre.egaleo.uni5.net/'+id+'/'+nome+'','Empreendimento','width=1000, height=650, left=10, top=10, modal=yes, center=yes; location=no, directories=no, fullscreen=yes, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes')
}

function mostrar(id){
	
	acao = document.getElementById(id+"_vld").value;
	
	if(acao == "on"){
		document.getElementById(id).style.display="block";
		document.getElementById(id+"_vld").value = "off";
	}
	else{
		document.getElementById(id).style.display="none";
		document.getElementById(id+"_vld").value = "on";
	}
}
