<!--

// Array Function

function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}

// This array holds the descriptions and names of the pages.

var pages = new makeArray("Selecciona artista",                        
						  "Amusic Skazz Band",
						  "Discipulos de Otilia",
						  "Gollum friends",						  
						  "Komando Moriles",
						  "La Gran Orquesta Republicana",
						  "Maine",
						  "Moonrakers",
						  "Non violence begins with breakfast",
						  "Rivolta",
						  "Skatobeat",				  						  
						  "The Red Sexy Band",
						  "Grabaciones no disponibles");

// This array hold the URLs of the pages.

var urls = new makeArray("",                       
						 "../tralla/AmusicSkazzBand.htm",
						 "../tralla/DiscipulosDeOtilia.htm",
						 "../tralla/GollumFriends.htm",
					     "../tralla/KomandoMoriles.htm",
						 "../tralla/LaGranOrquestaRepublicana.htm",
						 "../tralla/Maine.htm",
						 "../tralla/Moonrakers.htm",
						 "../tralla/NonViolenceBeginsWithBreakfast.htm",
 					     "../tralla/Rivolta.htm",
						 "../tralla/Skatobeat.htm",
						 "../tralla/TheRedSexyBand.htm",
						 "../tralla/zz_NoRecord.htm");

// This function determines which page is selected and goes to it.

function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}

//-->