function picframe(image, alignment) {
	document.write('<table cellpadding="0" cellspacing="0" border="0" align="' + alignment + '"><tr>');
	if (alignment == 'right') document.write ('<td width=20><img src="img/spacer.gif" width="20" height="2" alt=""></td>');
	document.write('<td><table cellpadding="0" cellspacing="0" border="0"');
	document.write('<tr><td width="29" height="29"><img src="img/fr_tlcnr.gif" width="29" height="29" alt=""></td><td height="29" background="img/fr_top.gif"></td><td width="29" height="29"><img src="img/fr_trcnr.gif" width="29" height="29" alt=""></td></tr>');
	document.write('<tr><td width="29" background="img/fr_lft.gif"></td><td>');
	document.write( image );
	document.write('</td><td width="29" background="img/fr_rgt.gif"></td></tr>');
	document.write('<tr><td width="29" height="29" ><img src="img/fr_blcnr.gif" width="29" height="29" alt=""></td><td height="29" background="img/fr_btm.gif"></td><td width="29" height="29"><img src="img/fr_brcnr.gif" width="29" height="29" alt=""></td></tr>');
	document.write('</table></td>');
	if (alignment == 'left') document.write ('<td width=20><img src="img/spacer.gif" width="20" height="2" alt=""></td>');
	document.write('</tr></table>');
}