function gid (id)
{
    return document.getElementById(id);
}

function loc_action ()
{
    var elem = gid('locations_list');
    var link = gid('locations_link');
    
    if (elem.style.display == 'none' || elem.style.display == false)  {
        elem.style.display = 'block';
        link.style.backgroundPosition = 'left bottom';
    } else {
        elem.style.display = 'none';
        link.style.backgroundPosition = '';
    }
        
}