// JavaScript Document

function HideMapContent() {
	document.getElementById('LocationMapPlot').style.display = "none";
	document.getElementById('FloorPlansAll').style.display = "block";
	
}

function ShowMapContent() {	
	document.getElementById('LocationMapPlot').style.display = "block";
	document.getElementById('FloorPlansAll').style.display = "none";
	init();
}


