function locationBox()
{ if(document.getElementById('locations_box').style.display == 'none')
  { document.getElementById('locations_standard').style.display = 'none';
    document.getElementById('locations_box').style.display = 'block';
  }
  else
  { document.getElementById('locations_standard').style.display = 'block';
    document.getElementById('locations_box').style.display = 'none';
  }
}

function locationBoxOut()
{ //document.getElementById('locations_standard').style.display = 'block';
  //document.getElementById('locations_box').style.display = 'none';
}
