//	Generate text for one picture using LightBox
function one_picture( album, imageName, descr )
{
	var itemTxt = "";

	itemTxt += "<a title=\"" + descr + "\"";
	itemTxt += " rel=\"lightbox[" + album + "]\""
	itemTxt += " href=\"/photoalbums/" + album + "/" + imageName + ".jpg\">";
	itemTxt += "<img src=\"/photoalbums/" +album+ "/" + imageName + "_tn.jpg\"";
	itemTxt += " alt=\"" + descr + "\"/>";
	itemTxt += "</a>";

	document.write( itemTxt );
}

