var images = new Array();
images[0] = 'width="150" height="150" src="images/epkthumb.jpg" alt="MassTango"';
images[1] = 'width="150" height="150" src="images/manguito_thumb.jpg" alt="MANGUITO"';
images[2] = 'width="150" height="145" src="images/Aquilesphoto.jpg" alt="Aquiles B&aacute;ez"';
images[3] = 'width="150" height="145" src="images/elecothumb.jpg" alt="El Eco"';
images[4] = 'width="150" height="100" src="images/lpbthumb.jpg" alt="Latin Party Boys"';
images[5] = 'width="150" height="147" src="images/pascualthumb.jpg" alt="Juanito Pascual"';
images[6] = 'width="150" height="138" src="images/Sol_thumb.jpg" alt="Sol y Canto"';
images[7] = 'width="150" height="102" src="images/sumajthumb.jpg" alt="Sumaj Chasquis"';
images[8] = 'width="150" height="145" src="images/tango_small.jpg" alt="TIERRA TANGO featuring Katie Viqueira"';
images[9] = 'width="150" height="147" src="images/ines.jpg" alt="Teresa Ines"';
images[10] = 'width="150" height="111" src="images/mango_blue2.jpg" alt="MANGO BLUE"';


var names = new Array();
names[0] = "MassTango";
names[1] = "MANGUITO";
names[2] = "Aquiles B&aacute;ez";
names[3] = "El Eco";
names[4] = "The Latin Party Boys";
names[5] = "Juanito Pascual";
names[6] = "Sol y Canto";
names[7] = "Sumaj Chasquis";
names[8] = "TIERRA TANGO featuring Katie Viqueira";
names[9] = "Teresa Ines";
names[10] = "MANGO BLUE";


function ShowImgs(nImages) {
	var count = images.length;
	var used = new Array(count);
	var selection;
	var i = 0;
	document.write('<table cols="' + nImages + '" cellpadding="10"><tr>');
	while (i < nImages) {
		selection = Math.floor(Math.random() * count);
		if (used[selection] == 1)
			continue;
		document.write('<td class="mainimage" width="150"><img ' + images[selection] + '><br>');
		document.write(names[selection] + '</td>');
		used[selection] = 1;
		i++;
	}
	document.write('</tr></table>');
}


