    var map =  document.getElementById('map');

    var content =  document.getElementById('content');
    var sidebar =  document.getElementById('sidebar');

  function hideMap() {
      if (document.getElementById) { // DOM3 = IE5, NS6
        map.removeChild(content);
        map.removeChild(sidebar);

          //add a new div for the "show map" link
        var newdiv = document.createElement('div');
        var divIDName = 'showmap';
        newdiv.setAttribute('id',divIDName);

        newdiv.innerHTML = '<a href=\'#\' onclick=\'showMap(); return false;\' style=\'font-weight: bold;\'>Show Map</a>';
        map.appendChild(newdiv);

      }
  };

    function showMap() {

        map.appendChild(content);
        map.appendChild(sidebar);
        var d = document.getElementById('showmap');
        map.removeChild(d);

    };



