<!-- 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" style="color: #000080; border: 2px solid #000080; background-color: #E0DDEC" onChange="selectaplace(this.form)" size=1>');
document.write ('<form><select name="select1" onChange="selectaplace(this.form)" size=1>');
document.write ('<option value=directory.htm>----Select category----');
document.write ('<option value=musicians.htm>Musicians/Singers');
document.write ('<option value=groups.htm>Music Groups');
document.write ('<option value=venues.htm>Music Venues');
document.write ('<option value=festivals.htm>Music Festivals');
document.write ('<option value=gig_guides.htm>Music Gig Guides');
document.write ('<option value=agencies.htm>Music Agents/Managers');
document.write ('<option value=organisations.htm>Music Organisations');
document.write ('<option value=instruments.htm>Musical Instruments and Equipment');
document.write ('<option value=record_labels.htm>Music Record Labels & Distributors');
document.write ('<option value=studios.htm>Music Recording Studios');
document.write ('<option value=CDs.htm>Music CD/DVD Manufacture');
document.write ('<option value=music_resources.htm>Music Resources');
document.write ('<option value=teachers.htm>Music Teachers');
document.write ('<option value=software.htm>Music Software');
document.write ('<option value=directory.htm>----------------------------------');
document.write ('<option value=music_promo.htm>Hear Australian Music');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->
