function framedPicture(imgSrc, sCom, imgWidth, imgHeight) {
	sImg = "<img src='" + imgSrc + "'";
	if (imgWidth > 0) { sImg += " width='" + imgWidth.toFixed() + "'"; };
	if (imgHeight > 0) { sImg += " height='" + imgHeight.toFixed() + "'"; };
	sImg +=" border='0'>";
	document.write("<table cellpadding=0 cellspacing=0 border=0>");
	document.write("<tr><td class='pf_leftTop'></td><td class='pf_top'></td><td class='pf_rightTop'></td></tr>");
	if (sCom == "") {
		document.write("<tr><td class='pf_left'></td><td class='pf_image'>" + sImg + "</td><td class='pf_right'></td></tr>");
	} else {
		document.write("<tr><td class='pf_left' rowspan=2></td><td class='pf_image'>" + sImg + "</td><td class='pf_right' rowspan=2></td></tr>");
		document.write("<tr><td class='pf_caption'>" + sCom + "</td></tr>");
	};
	document.write("<tr><td class='pf_leftBottom'></td><td class='pf_bottom'></td><td class='pf_rightBottom'></td></tr>");
	document.write("</table>");
};