function ImgBorder(ImgURL,ImgWidth,ImgHeight,IsLeft) {

	var ImgURL,ImgWidth,ImgHeight,TblWidth,TblHeight,IsLeft;
	TblWidth = ImgWidth + 8;
	TblHeight = ImgHeight + 8;
	
	document.write('<table width="',TblWidth,'" height="',TblHeight,'" border="0" cellpadding="0" cellspacing="0" ');
	
	if (IsLeft!=0) {
		document.write('align=left');
	}
	
	document.write('>');
	document.write('<tr><td colspan=2 height=4></td></tr>');
	document.write('<tr valign=top>');
	document.write('<td><img src="',ImgURL,'" width="',ImgWidth,'" height="',ImgHeight,'"></td>');
	document.write('<td background="/i/news/right.jpg" width="8"><img src="/i/news/right_top.jpg" width="8" height="8"><img src="/i/news/right.jpg" width="8" height="1"></td>');
	document.write('</tr>');
	document.write('<tr valign=top>');
	document.write('<td background="/i/news/bottom.jpg" height="8"><img src="/i/news/left_bottom.jpg" width="8" height="8"><img src="/i/news/bottom.jpg" width="1" height="8"></td>');
	document.write('<td background="/i/news/right_bottom.jpg"><img src="/i/news/right_bottom.jpg" width="8" height="8"></td>');
	document.write('</tr>');
	document.write('</table>');
}