var wotPage
function goThere(formObj){
wotPage = formObj.options[formObj.options.selectedIndex].value;
if(wotPage != "empty"){
location.href = wotPage;
wotPage = "";
}
}

var separator=" ; ";
function splitString(stringToSplit,separator) {
arrayOfStrings = stringToSplit.split(separator)
return arrayOfStrings;
}

var theMenuArray=new Array("Underbelly","2006","2005","2004","2003","2002","2001","2000","1998","1997","1996","1995","1994","Regal Tones","Helen Wheels");

function jumpMenuWriter(wotMenu){

if (wotMenu=="gigs"){
var menu01='<form>';
menu01+='<select name="bocGigs" onChange="goThere(this)" style="background:#999966;font-size:11px;color:#000033;height:16px;">';
menu01+='<option value="../gigs.htm">Gig Lists';
for (x=0;x<theMenuArray.length;x++){
var theChoice=theMenuArray[x];
if (theChoice=="Helen Wheels"){menu01+='<option value="../helenwheels/gigs.htm">'+theChoice+'';}
else if (theChoice=="Underbelly"){menu01+='<option value="../underbelly/gigs.htm">'+theChoice+'';}
else if (theChoice=="Regal Tones"){menu01+='<option value="../regaltones/gigs.htm">'+theChoice+'';}
else{menu01+='<option value="../tbs/'+theChoice+'.htm">tBS '+theChoice+'';}
}
menu01+='<'+'/select>';
document.write(menu01);
}
else{
var menu02='<form class="bocmenu">';
menu02+='<select name="bocGigs" onChange="goThere(this)" style="background:#999966;font-size:11px;color:#000033;height:16px;">';
menu02+='<option value="../index.htm">Set Lists';
for (x=0;x<theMenuArray.length;x++){
var theChoice=theMenuArray[x];
if (theChoice=="Helen Wheels"){menu02+='<option value="../helenwheels/setlists.htm">'+theChoice+'';}
else if (theChoice=="Underbelly"){menu02+='<option value="../underbelly/setlists.htm">'+theChoice+'';}
else if (theChoice=="Regal Tones"){menu02+='<option value="../regaltones/setlists.htm">'+theChoice+'';}

else{menu02+='<option value="../tbs/'+theChoice+'_setlists.htm">tBS '+theChoice+'';}
}
menu02+='<'+'/select>';
document.write(menu02);
}
}

function jumpMenuWriterHome(wotMenu){
if (wotMenu=="gigs"){
var menu01='<form>';
menu01+='<select name="bocGigs" onChange="goThere(this)" style="background:#999966;font-size:11px;color:#000033;height:16px;">';
menu01+='<option value="index.htm">Gig Lists';
for (x=0;x<theMenuArray.length;x++){
var theChoice=theMenuArray[x];

if (theChoice=="Helen Wheels"){menu01+='<option value="helenwheels/gigs.htm">'+theChoice+'';}
else if (theChoice=="Underbelly"){menu01+='<option value="underbelly/gigs.htm">'+theChoice+'';}
else if (theChoice=="RegalTones"){menu01+='<option value="regaltones/gigs.htm">'+theChoice+'';}

else{menu01+='<option value="tbs/'+theChoice+'.htm">tBS '+theChoice+'';}
}
menu01+='<'+'/select>';
document.write(menu01);
}
else{
var menu02='<form class="bocmenu">';
menu02+='<select name="bocGigs" onChange="goThere(this)" style="background:#999966;font-size:11px;color:#000033;height:16px;">';
menu02+='<option value="index.htm">Set Lists';
for (x=0;x<theMenuArray.length;x++){
var theChoice=theMenuArray[x];

if (theChoice=="Helen Wheels"){menu02+='<option value="helenwheels/setlists.htm">'+theChoice+'';}
else if (theChoice=="Underbelly"){menu02+='<option value="underbelly/setlists.htm">'+theChoice+'';}
else if (theChoice=="RegalTones"){menu02+='<option value="regaltones/setlists.htm">'+theChoice+'';}

else{menu02+='<option value="tbs/'+theChoice+'_setlists.htm">tBS '+theChoice+'';}
}
menu02+='<'+'/select>';
document.write(menu02);
}
}
