<!-- Begin
function selectaplace(form) {
var appname= navigator.appName;
var appversion=parseInt(navigator.appVersion);
if (appname == "Netscape" && appversion >= 3) {
var formindex=form.select1.selectedIndex;
var storage=form.select1.options[formindex].text;
if (form.select1.options[formindex].value != "none") {
var msg=storage+"You are now being transferred to the -> "+storage;
for (var spot=0;spot<msg.length-storage.length;spot++) {
var x=msg.substring(spot,msg.length);
form.select1.options[formindex].text=x;
for(var d=0;d<150;d++) { };
}
window.location=form.select1.options[formindex].value;
form.select1[formindex].text=storage;
} else  {
form.select1[formindex].text="Not a real option!";
for(var d=0;d<1250;d++) { };
form.select1[formindex].text=storage;
   }
}
else {
var formindex=form.select1.selectedIndex;
window.location=form.select1.options[formindex].value;
   }
}
function makeMyMenu() {
document.write ('<form><select name="select1" onChange="selectaplace(this.form)" size=1>');
document.write ('<option value=index.htm><---Select teaching category--->');
document.write ('<option value=brass.htm>Brass');
document.write ('<option value=clarinet.htm>Clarinet');
document.write ('<option value=composition.htm>Composition');
document.write ('<option value=guit_bass.htm>Elec. guitar/bass');
document.write ('<option value=flute.htm>Flute');
document.write ('<option value=guitar.htm>Guitar');
document.write ('<option value=harmonica.htm>Harmonica');
document.write ('<option value=jazz_tech.htm>Jazz technique');
document.write ('<option value=musicianship.htm>Musicianship');
document.write ('<option value=oboe_bassoon.htm>Oboe/Bassoon');
document.write ('<option value=percussion.htm>Percussion');
document.write ('<option value=piano.htm>Piano/Keyboard');
document.write ('<option value=accompanist.htm>Piano Accompanists');
document.write ('<option value=recorder.htm>Recorder');
document.write ('<option value=saxophone.htm>Saxophone');
document.write ('<option value=singing.htm>Singing');
document.write ('<option value=strings.htm>String');
document.write ('<option value=theory.htm>Theory');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->
