function make_pic(src,width,align,btxt,alt)
{
	i = eval(width) + 4;
	document.write('<table width="'+i+'" cellspacing="0" cellpadding="2" align="'+ align +'" border="0">\n');
	document.write('	<tr>\n');
	if (align == "right") {
		document.write('		<td width="10"><img src="img/pixel.gif" width="10" height="1"><br></td>\n');
	}
	document.write('		<td bgcolor="C9C5A5"><img src="'+ src +'" width="'+ width +'" border="0" alt="'+ alt +'"></td>\n');
	if (align == "left") {
		document.write('		<td width="10"><img src="img/pixel.gif" width="10" height="1"><br></td>\n');
	}
	document.write('	</tr>\n');
	if (btxt) {
		document.write('	<tr>\n');
		if (align == "right") {
			document.write('		<td width="10"><img src="img/pixel.gif" width="10" height="1"><br></td>\n');
		}
		document.write('		<td height="20" valign="bottom" class="btext" align="'+ align +'">'+ btxt +'<br><img src="img/pixel.gif" width="1" height="10"><br></td>\n');
		if (align == "left") {
			document.write('		<td width="10"><img src="img/pixel.gif" width="10" height="1"><br></td>\n');
		}
		document.write('	</tr>\n');
	}
	document.write('</table>\n');
}

function make_pixel(width,height)
{
	document.write('<img src="img/pixel.gif" width="'+ width +'" height="+ height +"><br>');
}

