function open_large_picture(picture_clicked)
{

	// this function is called whenever any of the pictures on the page are clicked
	// it will open a new browser window and load it with the large version of the
	// picture that was selected
	window.open(pictures[picture_clicked] + ".jpg");

}

function show_pictures()
{
   // this function will display all the pictures in the pictures[] array
   for(var i=1; i<pictures.length; i++)
   {
	   document.write("<IMG NAME='pic" + i + "' SRC='" + pictures[i] + "sm.jpg' ALT='" + pictures[i] + ".jpg' title='" + pictures[i] + ".jpg' ALIGN='center' ONCLICK='open_large_picture(" + i + ")' border=1 hspace=3 vspace=3>");
   }
}

// run the display function
show_pictures();
