<!-- REMOTE DROP-DOWN NAVIGATION MENU -->

<!-- Copyright 2003, Sandeep Gangadharan -->
<!-- For more free scripts go to http://sivamdesign.com/scripts/ -->
<!--
function gopage() {
if (document.dropdown.choice.selectedIndex==0) return;
if (document.dropdown.choice.selectedIndex==1) { window.location.href="http://www.microsoft.com/"; }
if (document.dropdown.choice.selectedIndex==2) { window.location.href="http://home.netscape.com/"; }
if (document.dropdown.choice.selectedIndex==3) { window.location.href="http://www.macromedia.com"; }
if (document.dropdown.choice.selectedIndex==4) { window.location.href="http://www.symantec.com"; }
}

document.writeln('<form name="dropdown">');
document.writeln('<select name="choice" onChange=gopage()>');
document.writeln('<option selected value=0><<< Select >>></option>');
document.writeln('<option value=1>Microsoft Corp.</option>');
document.writeln('<option value=2>Netscape Corp.</option>');
document.writeln('<option value=3>Macromedia Inc.</option>');
document.writeln('<option value=4>Symantec Corp.</option>');
document.writeln('</select>');
document.writeln('</form>');
// -->

