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 joeMenuArray=new Array("Blue Coupe","X Brothers","JB Solo","Other Projects","JB &amp; Friends","Joe/Patty G","BDS");
var joeMenuArray=new Array("Blue Coupe","X Brothers","Joe Bouchard Solo","Joe Bouchard &amp; Friends","Jeff Pitchell-Related","Acoustic Jukebox","Triple Threat","Rock and Pop Masters","Orleans &amp; Friends","Joe/Patty G","BDS");

function jumpMenuWriter(wotMenu){
if (wotMenu=="gigs"){
var menu01='<form>';
menu01+='<select name="bocGigs" onChange="goThere(this)" class="dropDwnMenus">';
menu01+='<option class="ddm" value="index.htm">Gig Lists';
for (x=0;x<joeMenuArray.length;x++){
var theChoice=joeMenuArray[x];
if (theChoice=="Joe Bouchard Solo"){menu01+='<option class="ddm" value="../jbsolo/gigs.htm">'+theChoice+'';}
else if (theChoice=="X Brothers"){menu01+='<option class="ddm" value="../xbros/gigs.htm">'+theChoice+'';}
else if (theChoice=="Joe Bouchard &amp; Friends"){menu01+='<option class="ddm" value="../jbf/gigs.htm">'+theChoice+'';}
else if (theChoice=="Jeff Pitchell-Related"){menu01+='<option class="ddm" value="../jeffpitchell/gigs.htm">'+theChoice+'';}
else if (theChoice=="Acoustic Jukebox"){menu01+='<option class="ddm" value="../acousticjukebox/gigs.htm">'+theChoice+'';}
else if (theChoice=="Triple Threat"){menu01+='<option class="ddm" value="../triplethreat/gigs.htm">'+theChoice+'';}
else if (theChoice=="Rock and Pop Masters"){menu01+='<option class="ddm" value="../rpm/gigs.htm">'+theChoice+'';}
else if (theChoice=="Orleans &amp; Friends"){menu01+='<option class="ddm" value="../orleans/gigs.htm">'+theChoice+'';}
else if (theChoice=="Blue Coupe"){menu01+='<option class="ddm" value="../bluecoupe/gigs.htm">'+theChoice+'';}
else if (theChoice=="Joe/Patty G"){menu01+='<option class="ddm" value="../jbpg/gigs.htm">'+theChoice+'';}
else if (theChoice=="BDS"){menu01+='<option class="ddm" value="../bds/gigs.htm">'+theChoice+'';}
else{menu01+='<option class="ddm" value="../index.htm">Home';}
}
menu01+='<'+'/select>';
document.write(menu01);
}
if (wotMenu=="setlists"){
var menu02='<form class="bocmenu">';
menu02+='<select name="bocGigs" onChange="goThere(this)" class="dropDwnMenus">';
menu02+='<option class="ddm" value="index.htm">Set Lists';
for (x=0;x<joeMenuArray.length;x++){
var theChoice=joeMenuArray[x];
if (theChoice=="Joe Bouchard Solo"){menu02+='<option class="ddm" value="../jbsolo/setlists.htm">'+theChoice+'';}
else if (theChoice=="X Brothers"){menu02+='<option class="ddm" value="../xbros/setlists.htm">'+theChoice+'';}
else if (theChoice=="Joe Bouchard &amp; Friends"){menu02+='<option class="ddm" value="../jbf/setlists.htm">'+theChoice+'';}
else if (theChoice=="Jeff Pitchell-Related"){menu02+='<option class="ddm" value="../jeffpitchell/setlists.htm">'+theChoice+'';}
else if (theChoice=="Acoustic Jukebox"){menu02+='<option class="ddm" value="../acousticjukebox/setlists.htm">'+theChoice+'';}
else if (theChoice=="Triple Threat"){menu02+='<option class="ddm" value="../triplethreat/setlists.htm">'+theChoice+'';}
else if (theChoice=="Rock and Pop Masters"){menu02+='<option class="ddm" value="../rpm/setlists.htm">'+theChoice+'';}
else if (theChoice=="Orleans &amp; Friends"){menu02+='<option class="ddm" value="../orleans/setlists.htm">'+theChoice+'';}
else if (theChoice=="Blue Coupe"){menu02+='<option class="ddm" value="../bluecoupe/setlists.htm">'+theChoice+'';}
else if (theChoice=="Joe/Patty G"){menu02+='<option class="ddm" value="../jbpg/setlists.htm">'+theChoice+'';}
else if (theChoice=="BDS"){menu02+='<option class="ddm" value="../bds/setlists.htm">'+theChoice+'';}
else{menu02+='<option class="ddm" value="../index.htm">Home';}
}
menu02+='<'+'/select>';
document.write(menu02);
}


if (wotMenu=="reviews"){
var menu03='<form class="bocmenu">';
menu03+='<select name="bocGigs" onChange="goThere(this)" class="dropDwnMenus">';
menu03+='<option class="ddm" value="index.htm">Reviews';
for (x=0;x<joeMenuArray.length;x++){
var theChoice=joeMenuArray[x];
if (theChoice=="Joe Bouchard Solo"){menu03+='<option class="ddm" value="../jbsolo/reviews.htm">'+theChoice+'';}
else if (theChoice=="X Brothers"){menu03+='<option class="ddm" value="../xbros/reviews.htm">'+theChoice+'';}
else if (theChoice=="Joe Bouchard &amp; Friends"){menu03+='<option class="ddm" value="../jbf/reviews.htm">'+theChoice+'';}
else if (theChoice=="Jeff Pitchell-Related"){menu03+='<option class="ddm" value="../jeffpitchell/reviews.htm">'+theChoice+'';}
else if (theChoice=="Acoustic Jukebox"){menu03+='<option class="ddm" value="../acousticjukebox/reviews.htm">'+theChoice+'';}
else if (theChoice=="Triple Threat"){menu03+='<option class="ddm" value="../triplethreat/reviews.htm">'+theChoice+'';}
else if (theChoice=="Rock and Pop Masters"){menu03+='<option class="ddm" value="../rpm/reviews.htm">'+theChoice+'';}
else if (theChoice=="Orleans &amp; Friends"){menu03+='<option class="ddm" value="../orleans/reviews.htm">'+theChoice+'';}
else if (theChoice=="Blue Coupe"){menu03+='<option class="ddm" value="../bluecoupe/reviews.htm">'+theChoice+'';}
else if (theChoice=="Joe/Patty G"){menu03+='<option class="ddm" value="../jbpg/reviews.htm">'+theChoice+'';}
else if (theChoice=="BDS"){menu03+='<option class="ddm" value="../bds/reviews.htm">'+theChoice+'';}
else{menu03+='<option class="ddm" value="../index.htm">Home';}
}
menu03+='<'+'/select>';
document.write(menu03);
}

}



function jumpMenuWriterHome(wotMenu){
if (wotMenu=="gigs"){
var menu01='<form>';
menu01+='<select name="bocGigs" onChange="goThere(this)" class="dropDwnMenus">';
menu01+='<option class="ddm" value="index.htm">Gig Lists';
for (x=0;x<joeMenuArray.length;x++){
var theChoice=joeMenuArray[x];
if (theChoice=="Joe Bouchard Solo"){menu01+='<option class="ddm" value="jbsolo/gigs.htm">'+theChoice+'';}
else if (theChoice=="X Brothers"){menu01+='<option class="ddm" value="xbros/gigs.htm">'+theChoice+'';}
else if (theChoice=="Joe Bouchard &amp; Friends"){menu01+='<option class="ddm" value="jbf/gigs.htm">'+theChoice+'';}
else if (theChoice=="Jeff Pitchell-Related"){menu01+='<option class="ddm" value="jeffpitchell/gigs.htm">'+theChoice+'';}
else if (theChoice=="Acoustic Jukebox"){menu01+='<option class="ddm" value="acousticjukebox/gigs.htm">'+theChoice+'';}
else if (theChoice=="Triple Threat"){menu01+='<option class="ddm" value="triplethreat/gigs.htm">'+theChoice+'';}
else if (theChoice=="Rock and Pop Masters"){menu01+='<option class="ddm" value="rpm/gigs.htm">'+theChoice+'';}
else if (theChoice=="Orleans &amp; Friends"){menu01+='<option class="ddm" value="orleans/gigs.htm">'+theChoice+'';}
else if (theChoice=="Blue Coupe"){menu01+='<option class="ddm" value="bluecoupe/gigs.htm">'+theChoice+'';}
else if (theChoice=="Joe/Patty G"){menu01+='<option class="ddm" value="jbpg/gigs.htm">'+theChoice+'';}
else if (theChoice=="BDS"){menu01+='<option class="ddm" value="bds/gigs.htm">'+theChoice+'';}
else{menu01+='<option class="ddm" value="index.htm">Home';}
}
menu01+='<'+'/select>';
document.write(menu01);
}
if (wotMenu=="setlists"){
var menu02='<form class="bocmenu">';
menu02+='<select name="bocGigs" onChange="goThere(this)" class="dropDwnMenus">';
menu02+='<option class="ddm" value="index.htm">Set Lists';
for (x=0;x<joeMenuArray.length;x++){
var theChoice=joeMenuArray[x];
if (theChoice=="Joe Bouchard Solo"){menu02+='<option class="ddm" value="jbsolo/setlists.htm">'+theChoice+'';}
else if (theChoice=="X Brothers"){menu02+='<option class="ddm" value="xbros/setlists.htm">'+theChoice+'';}
else if (theChoice=="Joe Bouchard &amp; Friends"){menu02+='<option class="ddm" value="jbf/setlists.htm">'+theChoice+'';}
else if (theChoice=="Jeff Pitchell-Related"){menu02+='<option class="ddm" value="jeffpitchell/setlists.htm">'+theChoice+'';}
else if (theChoice=="Acoustic Jukebox"){menu02+='<option class="ddm" value="acousticjukebox/setlists.htm">'+theChoice+'';}
else if (theChoice=="Triple Threat"){menu02+='<option class="ddm" value="triplethreat/setlists.htm">'+theChoice+'';}
else if (theChoice=="Rock and Pop Masters"){menu02+='<option class="ddm" value="rpm/setlists.htm">'+theChoice+'';}
else if (theChoice=="Orleans &amp; Friends"){menu02+='<option class="ddm" value="orleans/setlists.htm">'+theChoice+'';}
else if (theChoice=="Blue Coupe"){menu02+='<option class="ddm" value="bluecoupe/setlists.htm">'+theChoice+'';}
else if (theChoice=="Joe/Patty G"){menu02+='<option class="ddm" value="jbpg/setlists.htm">'+theChoice+'';}
else if (theChoice=="BDS"){menu02+='<option class="ddm" value="bds/setlists.htm">'+theChoice+'';}
else{menu02+='<option class="ddm" value="index.htm">Home';}
}
menu02+='<'+'/select>';
document.write(menu02);
}

if (wotMenu=="reviews"){
var menu03='<form class="bocmenu">';
menu03+='<select name="bocGigs" onChange="goThere(this)" class="dropDwnMenus">';
menu03+='<option class="ddm" value="index.htm">Reviews';
for (x=0;x<joeMenuArray.length;x++){
var theChoice=joeMenuArray[x];
if (theChoice=="Joe Bouchard Solo"){menu03+='<option class="ddm" value="jbsolo/reviews.htm">'+theChoice+'';}
else if (theChoice=="X Brothers"){menu03+='<option class="ddm" value="xbros/reviews.htm">'+theChoice+'';}
else if (theChoice=="Joe Bouchard &amp; Friends"){menu03+='<option class="ddm" value="jbf/reviews.htm">'+theChoice+'';}
else if (theChoice=="Jeff Pitchell-Related"){menu03+='<option class="ddm" value="jeffpitchell/reviews.htm">'+theChoice+'';}
else if (theChoice=="Acoustic Jukebox"){menu03+='<option class="ddm" value="acousticjukebox/reviews.htm">'+theChoice+'';}
else if (theChoice=="Triple Threat"){menu03+='<option class="ddm" value="triplethreat/reviews.htm">'+theChoice+'';}
else if (theChoice=="Rock and Pop Masters"){menu03+='<option class="ddm" value="rpm/reviews.htm">'+theChoice+'';}
else if (theChoice=="Orleans &amp; Friends"){menu03+='<option class="ddm" value="orleans/reviews.htm">'+theChoice+'';}
else if (theChoice=="Blue Coupe"){menu03+='<option class="ddm" value="bluecoupe/reviews.htm">'+theChoice+'';}
else if (theChoice=="Joe/Patty G"){menu03+='<option class="ddm" value="jbpg/reviews.htm">'+theChoice+'';}
else if (theChoice=="BDS"){menu03+='<option class="ddm" value="bds/reviews.htm">'+theChoice+'';}
else{menu03+='<option class="ddm" value="index.htm">Home';}
}
menu03+='<'+'/select>';
document.write(menu03);
}

}




