Ok... could you please post the code for changing the div height as well as visibility? Here is the code as it exists now on the page:
Code:
<SCRIPT LANGUAGE="JavaScript">
<!--
n = (document.layers) ? 1:0
ie = (document.all) ? 1:0
function init() {
if (n) block = document.blockDiv
if (ie) block = blockDiv.style
}
function show(showobj) {
if (n) showobj.visibility = "show"
else if (ie) showobj.visibility = "visible"
}
function hide(hideobj) {
if (n) hideobj.visibility = "hide"
else if (ie) hideobj.visibility = "hidden"
}
//-->
</SCRIPT>
And later on I make the call using javascript to hide and show the layer:
Code:
<A HREF="javascript:show(block)">View Options</A> - <A HREF="javascript:hide(block)">Hide Options</A>
<BR>
<DIV ID="blockDiv" STYLE="visibility:hidden;">
How can I insert the height option here?
Bookmarks