function toggleDiv(divName, divName2) {
    thisDiv = document.getElementById(divName);
	thisDiv2 = document.getElementById(divName2);
	
	if (thisDiv) {
			if (thisDiv.style.display == "none") {
				thisDiv.style.display = "block";
			} else {
				thisDiv.style.display = "none";
			}
		}
		if (thisDiv2) {
			if (thisDiv2.style.display == "block") {
				thisDiv2.style.display = "none";
			} else {
				thisDiv2.style.display = "block";
			}
		}
    }

