function hideall(){
  for (count=1; count<8; count+=1) 
  document.getElementById('LocationBox'+count).style.display='none';
}

function showbox(LocationBox){
  document.getElementById(LocationBox).style.display='';
}

