var text2 = "Select some music from the top and this scrollbar will give you information about the music being played.";
var choice = null
  function Hit(form){
   window.width=300;
   choice = form.Hitlist.options[form.Hitlist.selectedIndex].value;
  	  if(choice=='x') return false;
	  switch (choice){
		case "andante_allegro.mid":
			text2 = " 'Andante Allegro' .... from Handel's 'Organ Concerto Op.No.6 in B'..... midi music created by K.W.Whitcomb.                                    ";
			break;
	   	case "arrival.mid":
   	   	  	text2 = " 'The Arrival of the Queen of Sheeba' .... from Handel's 'Solomon' .... midi music created by K.W.Whitcomb. ";
		  	break;
   	   	case "blacksmith.mid":
	   	  	text2 = "'The Harmonious Blacksmith'.... from Handel's 'Air and Variations in E'.... recreated in midi by K.W.Whitcomb";
		  	break;
   	   	case "bouree.mid":
	   	  	text2 = " 'A Bouree' (No.8 from Suite in F Major) .... from Handel's 'Water Music'..... midi music created by ??.                                   ";
		  	break;
   	   	case "conqring.mid":
	   	  	text2 = " 'See the Conquering Hero Comes' ..... from Handels ... 'Judas Maccabaeus'. ";
		  	break;
   	   	case "hallelujah.mid":
	   	 	text2 = " 'The Hallelujah Chorus'... from Handel's 'Messiah'..... bleeding Majestic if you ask me. WOW.. WOW!!";
		  	break;
   	   	case "hornpipe.mid":
	   	  	text2 = " 'Handel's Water Music'.... 'Suite in D Major' ... (movement.12 - Hornpipe). ";
		  	break;
   	   	case "joy_to_the_world.mid":
	   	  	text2 = " 'Joy to the World' .... from Handel's 'ANTIOCH'..... midi music created by B.M Ames.                 ";
		  	break;
   	   	case "Largo_in_G.mid":
	   	  	text2 = "'Ombra Mai Fu (Largo in G)' ..... from Handels ... 'Xerxes'. ";
		  	break;
   	   	case "rejouissance.mid":
	   	  	text2 = " 'Rejouissance' ..... from Handels .... 'Music for the Royal Fireworks' ";
		  	break;
   	   	case "tempo_ordinario_no10.mid":
	   	  	text2 = " 'Tempo Ordinario' .... from Handel's 'Water Music'..... (No.10 in Suite in F Major) ...... midi music created by ??.                 ";
		  	break;
   	   	case "tempo_ordinario_no5.mid":
	   	  	text2 = " 'Tempo ordinario No.5' .... from Handel's 'Water Music'..... midi music created by ??. ";
		  	break;
   	   	case "vivace.mid":
	   	  	text2 = " 'Vivace' .... from Handel's 'Concerto Grosso in B, Op.3 No2'..... midi music created by J L Dawson.                ";
		  	break;
   	   	case "zadok.mid":
	   	  	text2 = " 'Zadok the Priest' .....This music was first used for the Coronation of King George II in 1727 and has been used at every English Monarchs Coronation ever since.. ";
		  	break;
	   	default:
			text2 = " 'Andante Allegro' .... from Handel's 'Organ Concerto Op.No.6 in B'..... midi music created by K.W.Whitcomb.                                    ";
			break;
	}
  	top.location.href=choice;

    }

  
 function barscroll(seed) {
 	var text1  = " The music currently playing is ..... ";
 	var msg=text1+text2;
 	var out = " ";
 	var c = 1;
 	if (seed > 100) {
 		seed--;
 		cmd="barscroll("+seed+")";
 		timerTwo=window.setTimeout(cmd,100);
 	} else if (seed <= 100 && seed > 0) {
 		for (c=0 ; c < seed ; c++) {
 			out+=" ";
 		}
 		out+=msg;
 		seed--;
		window.status=out;
 		cmd="barscroll("+seed+")";
 		timerTwo=window.setTimeout(cmd,100);
	} else if (seed <= 0) {
 		if (-seed < msg.length) {
 			out+=msg.substring(-seed,msg.length);
 			seed--;
 			window.status=out;
 			cmd="barscroll("+seed+")";
 			timerTwo=window.setTimeout(cmd,100);
		} else {
 			window.status=" ";
 			timerTwo=window.setTimeout("barscroll(100)",75);
 		}
 	}
 }
 // -->
