var imgdir = "/img/";

function viewThumbnail(group,image,small,w,h,caption,comment) {
	var strtext = "<div class=thumbnail>";
	strtext = strtext + "<a href='" + imgdir + image + "' rel=lightbox[" + group + "] title='" + comment + "'><img src='" + imgdir + small + "' width=" + w + " height=" + h + "></a>";
	strtext = strtext + "<div class=caption>" + caption + "</div>";
	strtext = strtext + "</div>";
	document.write(strtext);
}
