// JScript source code

function infobox(tblwidth,infotext){

	document.write(' <table border="0" cellspacing="0" width=' + tblwidth + ' cellpadding="0"> ');
	document.write(' <tr> ');
	document.write(' <td> ');
	document.write(' <img name="table_r2_c1" src="images/table_r2_c1.gif" width="9" height="10" border="0" alt=""></td> ');
	document.write(' <td width="100%" valign="top" background="images/table_r2_c2.gif"> ');
	document.write(' <img name="table_r2_c2" src="images/spacer.gif" width="1" height="1" border="0" alt=""></td> ');
	document.write(' <td><img name="table_r2_c3" src="images/table_r2_c3.gif" width="9" height="10" border="0" alt=""></td> ');
	document.write(' </tr> ');
	document.write(' <tr> ');
	document.write(' <td background="images/table_r3_c1.gif"><img name="table_r3_c1" src="images/table_r3_c1.gif" width="9" height="129" border="0" alt=""></td> ');
	document.write(' <td width="100%" background="images/table_r3_c2.gif"><font face="Verdana" size="2">' + infotext + '&nbsp;</font></td> ');
	document.write(' <td background="images/table_r3_c3.gif"><img name="table_r3_c3" src="images/table_r3_c3.gif" width="9" height="129" border="0" alt=""></td> ');
	document.write(' </tr> ');
	document.write(' <tr> ');
	document.write(' <td><img name="table_r4_c1" src="images/table_r4_c1.gif" width="9" height="13" border="0" alt=""></td> ');
	document.write(' <td width="100%" valign="bottom" background="images/table_r4_c2.gif"><img name="table_r4_c2" src="images/spacer.gif" width="1" height="1" border="0" alt=""></td> ');
	document.write(' <td><img name="table_r4_c3" src="images/table_r4_c3.gif" width="9" height="13" border="0" alt=""></td> ');
	document.write(' </tr> ');
	document.write(' </table> ');

}