var pop_state=new Array();

function popdown(id,pop_list){

	element = "popdown_" + id;
	arrowimage = "arrow_" + id;
	listelement = document.getElementById(element);

	if(pop_state[id] == 1){
		listelement.innerHTML = "";
		document.images[arrowimage].src = 'images/arrow_right.png';
		pop_state[id] = 0;
	}
	else{
		listelement.innerHTML = "<span class='$text'><ul style='margin-top:-5px;'>" + pop_list + "</ul></span>";
		document.images[arrowimage].src = 'images/arrow_down.png';
		pop_state[id] = 1;
	}
}

function show_map(){
	element = document.getElementById("large_map");
	element.style.visibility = "visible";
}
function hide_map(){
	element = document.getElementById("large_map");
	element.style.visibility="hidden"
}


function show_map_villas(){
	element = document.getElementById("map_villas");
	element.style.visibility = "visible";
}
function hide_map_villas(){
	element = document.getElementById("map_villas");
	element.style.visibility="hidden"
}


function show_map_community(){
	element = document.getElementById("map_community");
	element.style.visibility = "visible";
}
function hide_map_community(){
	element = document.getElementById("map_community");
	element.style.visibility="hidden"
}