function writealbum(strTitle, strFolder, strImage, strDate, strTotalPics) {

	document.write('<table cellpadding="0" cellspacing="10" class="phototable" border="0">\n<tr>\n<td valign="top" align="right">');
	document.write('<a href="');
	document.write(strFolder);
	document.write('/index.html"><img src="img/');
	document.write(strImage);
	document.write('.jpg" width="50" height="50" class="pic"></a></td>');
	document.write('<td valign="top" align="left" class="albumblurb">');
	document.write('<p class="albumtitle"><a href="');
	document.write(strFolder);
	document.write('/index.html" class="albumtitle">');
	document.write(strTitle);
	document.write('</a><span class="albumdescription"><br />');
	document.write(strDate);
	document.write(' | ');
	document.write(strTotalPics);
	document.write(' pages</p>\n</td>\n</tr>\n</table>');

}