var images = new Array();
var imagecount = 0;
var maxNum = 32;
var folder = "./live/010406_binariozero";

images[0] = "foto1.jpg";
images[1] = "foto2.jpg";
images[2] = "foto3.jpg";
images[3] = "foto4.jpg";
images[4] = "foto5.jpg";
images[5] = "foto6.jpg";
images[6] = "foto7.jpg";
images[7] = "foto8.jpg";
images[8] = "foto9.jpg";
images[9] = "foto10.jpg";
images[10] = "foto11.jpg";
images[11] = "foto12.jpg";
images[12] = "foto13.jpg";
images[13] = "foto14.jpg";
images[14] = "foto15.jpg";
images[15] = "foto16.jpg";
images[16] = "foto17.jpg";
images[17] = "foto18.jpg";
images[18] = "foto19.jpg";
images[19] = "foto20.jpg";
images[20] = "foto21.jpg";
images[21] = "foto22.jpg";
images[22] = "foto23.jpg";
images[23] = "foto24.jpg";
images[24] = "foto25.jpg";
images[25] = "foto26.jpg";
images[26] = "foto27.jpg";
images[27] = "foto28.jpg";
images[28] = "foto29.jpg";
images[29] = "foto30.jpg";
images[30] = "foto31.jpg";
images[31] = "foto32.jpg";
images[32] = "foto33.jpg";


function getNextImage() { 

	var outputString = '<a href="'+folder+'/resize20/'+images[imagecount]+'" target="_blank"><IMG SRC="'+folder+'/thumbs/'+images[imagecount]+'"></a>';
	document.write(outputString) ;

}

function generatePage(BGcolor) {
    while(imagecount<=maxNum)
    	{
	if(imagecount%3==0)
		{
		document.write('<TR>');
		}
	document.write('<TD width=33% align=center valign=middle>');
	document.write('<TABLE cellSpacing=4 cellPadding=8 width="100%" align=center>');
	document.write('<TR><TD class=normal-text align=center valign=center bgcolor='+BGcolor+' valign=top height=200>');
	getNextImage();
	document.write('</TD></TR></TABLE></TD>');
	if(imagecount%3==2)
		{
		document.write('</TR>');
		}
	imagecount++;
	}
}


