﻿function SwapDivs(hideDivID, showDivID) {
	var hideDiv = document.getElementById(hideDivID);
	var showDiv = document.getElementById(showDivID);
	if (hideDiv != null && showDiv != null) {
		hideDiv.style.display = "none";
		showDiv.style.display = "";
	}
}