
function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return true;
}

function show_map(director) {
	document.getElementById('map_show').innerHTML = document.getElementById(director+'_map').innerHTML;
	showlocation(director);
}

function showlocation(location) {
	//alert(document.getElementById(location).innerHTML);
	
	if(location!='') {
		document.getElementById('locationtext').innerHTML = document.getElementById(location).innerHTML;
	} /**/
}



