<!-- DROP-DOWN NAVIGATION MENU - II --> <!-- This goes in the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2001, Sandeep Gangadharan --> <!-- For more free scripts go to http://www.sivamdesign.com/scripts/ --> <!-- function gopage(theLink) { if (document.dropdown.theLink.value != "") { location.href = document.dropdown.theLink.value; } } // --> </script> <!-- This goes in the BODY of the html file --> <form name="dropdown"> <select name="theLink" onchange="gopage(this)"> <option selected value="">&lt;&lt;&lt;&nbsp; Select &nbsp;&gt;&gt;&gt;</option> <option value="http://www.microsoft.com/">Microsoft Corp.</option> <option value="http://home.netscape.com/">Netscape Corp.</option> <option value="http://www.macromedia.com">Macromedia Inc.</option> <option value="http://www.symantec.com">Symantec Corp.</option> </select> </form>