/**************************************
Short functions to handle a photo album
**************************************/

function LoadPic(picindex) {
	var itemname = "albums/2009/" + pic_name[picindex];
	frames['picitem'].location.href = itemname;
}

function PicLister(){
	document.write("<p align='center'>");
	for (var index = 0; index < pic_name.length; ++index) {
		document.write(" &nbsp");
		document.write("<a href='#top'><img onclick='LoadPic(");
		document.write(index);
		document.write(") ' alt='");
		document.write(pic_title[index]);
		document.write("' src='");
		var im = "albums/2009/" + pic_thumb[index]; 
		document.write(im);
		document.write("' height='56' width='96' border='2'></a>");
	}
	document.write("</p>");
}

