<!-- CHANGING VALUE DROP DOWN LINK --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2002, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- var val = 0; function changingLinks() { val++; if (val == 1) { document.menu.choice.selectedIndex = 0; } if (val == 2) { document.menu.choice.selectedIndex = 1; } if (val == 3) { document.menu.choice.selectedIndex = 2; } if (val == 4) { document.menu.choice.selectedIndex = 3; } if (val == 5) { val = 0; } timer = window.setTimeout("changingLinks()", 2000); } function stopIt() { window.clearTimeout(timer); } function gotoURL() { if (document.menu.choice.selectedIndex == 0) { location.href="http://www.microsoft.com/"; } if (document.menu.choice.selectedIndex == 1) { location.href="http://home.netscape.com/"; } if (document.menu.choice.selectedIndex == 2) { location.href="http://www.macromedia.com"; } if (document.menu.choice.selectedIndex == 3) { location.href="http://www.symantec.com"; } } //--> </script> <body onLoad="changingLinks();"> <form name="menu"> <font face="verdana, arial, helvetica, sans-serif" size="1"> <select name="choice" style="font-size: 9pt" onChange="stopIt()"> <option value="0" selected>Microsoft</option> <option value="1">Netscape</option> <option value="2">Macromedia</option> <option value="3">Symantec</option> </select></font> <input type="button" value="Go" onClick="gotoURL()" style="font-size: 9pt" /> </form>