function sp_scroll_to_map($atts = array())
{
    $url = sp_find_group_uri();
    $name = sprintf(__('View the %s map', 'scoutwp_plugin'), ucwords(get_option('website_type', 'group')));
    return "<a href=\"#our-map\" class=\"button-link icon-map scroll-to-map\">{$name}</a>";
}
function sp_find_group_form()
{
    ?>
    <section class="sp-find-a-group" id="sp-find-a-group">
       <h2><?php 
    _e('Find a Group or Unit', 'scoutwp_plugin');
    ?>
<span><?php 
    _e('Volunteers go straight to section 2.', 'scoutwp_plugin');
    ?>
</span></h2>
        <form action="<?php 
    echo sp_find_group_uri();
    ?>
" method="POST" class="select-section">
            <ol>
                <li><span><?php 
    _e('Enter a date of birth...', 'scoutwp_plugin');
    ?>
</span><?php 
    sp_groups_month_select();
    sp_groups_year_select();
    ?>
</li>
                <li><span><?php 
    _e('...or select a section', 'scoutwp_plugin');
    ?>
</span><?php 
    sp_section_select();
    ?>
</li>
                <li><span><?php 
    _e('Enter your postcode', 'scoutwp_plugin');
    ?>
</span><?php 
    sp_postcode_input();
    ?>
</li>
                <li><input type="submit" value="Go" /></li>
            </ol>
       </form>
   </section>
   <?php 
}