Sure, just replace the default BODY tag inside your external menu file (ie: menu.htm), for example:
Code:
<body onMouseover="if ((document.all||document.getElementById)&&window.parent.pull) window.parent.pull()"
onMouseout="if ((document.all||document.getElementById)&&window.parent.pull) window.parent.draw()" topmargin="5" leftmargin="5"
marginwidth="5" marginheight="5">
to:
Code:
<script type="text/javascript">
var currentmenustate="close"
function showorhide(){
if (currentmenustate=="close"){
window.parent.pull() //open menu
currentmenustate="open"
}
else{ //close menu
window.parent.draw()
currentmenustate="close"
}
}
</script>
<body onClick="showorhide()" topmargin="5" leftmargin="5"
marginwidth="5" marginheight="5">
Bookmarks