The button I need the script to click is setup like this:
<div id="closer" style="visibility: visible;">
<input style="height:32px" type="button" onclick="javascript:showIt('hide');" value="Click here to return to AdventureQuest">
</div>
The thing that I can't figure out is how to reference the button as a variable, since the button has no id the getElementByID() won't work. I think that in order to reference the button I need to reference the <div>
element somehow.