 function showHide(){
                var showHide = document.getElementById("showHideBox")
                if (showHide.className != "show")
                {showHide.className = "show";

                }
                else
                {showHide.className = "hidden";  }

            }

            function showHideText(){
                var showHideText = document.getElementById("showHideText")
                if (showHideText.className != "show")
                {showHideText.className = "show";

                }
                else
                {showHideText.className = "hidden";  }

            }