
<DIV CLASS="menbar1" ID="menbar1" STYLE="position:absolute;top:1;visibility:hide;" zIndex="1000" ALIGN="right"> <table bgcolor="#ffffff"><tr><td><A HREF="javascript:change(1)">Open MenuBar</A></td></tr></table> </DIV> <DIV CLASS="menbar2" ID="menbar2" STYLE="position:absolute;top:1;visibility:hide;display:none;" zIndex="1001" ALIGN="right"> <table bgcolor="#c0c0c0"><tr><td bgcolor="#ffffff"> <a href="javascript:change(2)">Close MenuBar</a><br> </td></tr><tr><td>
<a href="http://www.your-url.com">Your Links 1</a><br> href="http://www.your-url.com">Your Links 2</a><br> href="http://www.your-url.com">Your Links 3</a><br> href="http://www.your-url.com">Your Links 4</a><br> </td></tr></table> </DIV> <script language="Javascript1.2"> <!-- // original content taken from Nic's JavaScript Page with permission // lack of these three lines will result in copyright infringment // made by: Nic's JavaScript Page - http://www.javascript-page.com var JX = 0; var JY = 0; var wm; if (document.layers){ wm = document.menbar1; } if (document.all) { wm = document.all.menbar1; } function change(wow) { if (document.layers){ if (wow == 1) { wm.visibility = "hide"; wm = document.menbar2; } if (wow == 2) { wm.visibility = "hide"; wm = document.menbar1; } } if (document.all){ if (wow == 1) { wm.style.display = "none"; wm = document.all.menbar2; } if (wow == 2) { wm.style.display = "none"; wm = document.all.menbar1; } } } function menbar() { if (document.layers){ JX = window.pageXOffset; JY = window.pageYOffset; wm.visibility = "hide"; wm.top = JY; wm.left = JX; wm.visibility= "show"; } if (document.all){ if (navigator.appVersion.indexOf("Mac") == -1){ wm.style.display = "none"; JX = document.body.scrollLeft; JY = document.body.scrollTop; wm.style.top = JY; wm.style.left = JX; wm.style.display = ""; } } } setInterval("menbar()",100); //--> </script>