


function showGallery(galNumb){
	window.open(galNumb + 'video/gallery.htm','bebopGallery','width=600, height=392');
}

function showPic(picNumb){
	big.src='gnd/grande (' + picNumb + ').jpg';
	texto.innerHTML = txt[picNumb];
}

function writeGallery(picNumb){
	
	document.write('<table width="600" height="390" border="0" cellpadding="0" cellspacing="0"><tr><td width="230" valign="top" rowspan="3"><div class="hider"><div class="galleryTumbs">');

	for (var a = 1; a < picNumb; a++){
		document.write('<img src="peq/pequena (' + a + ').jpg" alt="' + txt[a] + '" width="60" height="45" onClick="showPic(' + a + ')">');
	}
	document.write('</div></div></td>');
   	document.write('<td height="100" background="../galleryhead.jpg" style="background-repeat:no-repeat;padding:4px;padding-left:42px;"><img src="tit2.gif"></td>');
	document.write('</tr><tr><td height="220" align="center" valign="middle">');
	document.write('<img id="big" src="../logo.jpg">');
	document.write('</td></tr>');
	document.write('<tr><td height="70" id ="texto" valign="middle" align="center"></td></tr>');
	document.write('</table>');
}