Hi I created a hide or show function for you with easy javascript
all you do is feed it 2 arguments the div id and the event you want either hide or show
function hide_show(id,event)
{
var div=document.getElementById(id);
switch(event)
{
case "show":
div.style.display="block";
break;
case "hide":
div.style.display="none";
break;
default:
alert("error");
}
}
then in your div you would initially set up as display none then you add this function to an onclick event handler to one of your hyper links <a href=# onclick=“hide_show(‘id’,‘show’)”> click here to show</a>
like that
I could have used a if statement or even a ternary operator but I chose the switch for a switch