//	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 );
}

//	Generate text for one PNG picture using LightBox
function one_picture_png( album, imageName, descr )
{
	var itemTxt = "";

	itemTxt += "<a title=\"" + descr + "\"";
	itemTxt += " rel=\"lightbox[" + album + "]\""
	itemTxt += " href=\"/wp-content/uploads/" + album + "/" + imageName + ".png\">";
	itemTxt += "<img src=\"/wp-content/uploads/" +album+ "/" + imageName + "-150x150.png\"";
	itemTxt += " alt=\"" + descr + "\"/>";
	itemTxt += "</a>";

	document.write( itemTxt );
}

