
function location_finder_area()
{
document.getElementById('location_finder').style.display = 'inline';
document.getElementById('location_map').style.display = 'none';
}

function location_map_area()
{
document.getElementById('location_finder').style.display = 'none';
document.getElementById('location_map').style.display = 'inline';

}