function showMenu(name) {
  document.getElementById(name).style.display = "block";
}

function hideMenu(name) {
  document.getElementById(name).style.display = "none";
}

function openKitzMicrosite() {
  popup = window.open("kitz4kids.html", "Kitz4Kids", "dependend=yes, width=780, height=540, resizable=no, location=no, menubar=no, toolbar=no, status=no");
  popup.moveTo(screen.width/2 - 390, screen.height/2 - 270);
}

function toggleMenu(menuId) {
	var menu = document.getElementById(menuId);
	var visibility = menu.style["display"]; 
	if(visibility == "block") {
		menu.style["display"] = "none";
	}
	else {
		menu.style["display"] = "block";
	}
}