function showMap() {
  HideContent('showMap');
  ShowContent('hideMap');
  HideContent('shapermainphoto');
  ShowContent('shopmapphoto');
}

function hideMap() {
  HideContent('hideMap');
  ShowContent('showMap');
  HideContent('shopmapphoto');
  ShowContent('shapermainphoto');
}

function HideContent(d) {
var d = document.getElementById(d);
if (d)
d.style.display = 'none';
}

function ShowContent(d) {
var d = document.getElementById(d);
if (d)
d.style.display = 'block';
}
