    function showHideDiv(myDiv)
    {

    var myDiv = document.getElementById(myDiv);    //this is the ID of the div

        if (myDiv.style.display != "none")
        {
            myDiv.style.display = "none";
        }
        else {
            myDiv.style.display = "block";
        }
    }