function SwapMap(ID1) {
	var i, styleObj

	for (i=1; i<5; i++) {
		with (document) {
			if (document.all) {
				styleObj = all(ID1 + i)
			} else {
				styleObj = document.getElementById(ID1 + i)
			}
			if (styleObj.style.display == 'none') {
				styleObj.style.display = ""
				styleObj.style.visibility = ""
			} else {
				styleObj.style.display = "none"
				styleObj.style.visibility = "hidden"
			}
		}
	}
}
