<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Pop Up</title> <link rel=stylesheet type="text/css" href="../class.css"> <script type="text/JavaScript"> if (document.all) { docObj = "document.all." styleObj = ".style" } else { docObj = "document." styleObj = "" } function toggleMenu(currElem) { thisObj = eval(docObj + currElem + styleObj) thisObj.top = (parseInt(thisObj.top) == -5) ? -90 : -5 } </script> <style type="text/css"> .menu {position:absolute; font:12px/14px helvetica; width:75px; background-color:#666666; layer-background-color:#666666; color:#FFFFFF} </style> </head> <body bgcolor=white> <span id="fileMenu" class="menu" style="left:20px; top:-90px"><br> <a href="javascript:window.open()">Open</a><br> <a href="javascript:window.print()">Print</a><br> <a href="javascript:history.back()">Back</a><br> <a href="javascript:history.forward()">Forward</a><br> <a href="javascript:window.close()">Close</a><hr> <a href="javascript:toggleMenu('fileMenu')">File</a> </span> <span id="searchMenu" class="menu" style="left:100px;top:-90px"><br> <a href="http://www.yahoo.com">Yahoo</a><br> <a href="http://www.excite.com">Excite</a><br> <a href="http://www.hotbot.com">HotBot</a><br> <a href="http://www.lycos.com">Lycos</a><br> <a href="http://www.infoseek.com">Infoseek</a><hr> <a href="javascript:toggleMenu('searchMenu')">Search</a> </span> </body> </html>