Pull Down Menu Linkform






The code for this

<form name="linkform">
<select name="linkselect">
<option selected>Make It A Ralph Day
<option>Ralph's Entertainment Mecca
<option>Ralph's Jukebox
<option>Ralph's Forms & Javascript Lessons
<option>Ralph's Babes of the Day
<option>Ralph's Movie Palace
</select>
<input type="button" value="GO" onClick="window.location.href=URLarray[document.linkform.li nkselect.selectedIndex]">
</form>

<script language="javascript">
var nr_of_links=5
URLarray=new Array(nr_of_links)
URLarray[0]
URLarray[1]="http://www.geocities.com/Hollywood/Academy/107 4/index.html"
URLarray[2]="http:/tn/Signit/jukebox.html"
URLarray[3]="http:/tn/Signit/lessons.html"
URLarray[4]="http:/tn/Signit/babeday.html"
URLarray[5]="http:/tn/Signit/movie.html"
//--End of Links
</script>