function main_section_image(input, required, link, alt) {
	var name = '';
	if (input == required) {
		name = required + '_selected.gif';
	} else {
		name = required + '.gif';
	}
	document.write('<td valign="top"><img src="/images/spacer.gif" width="1" height="100%"></td>');
	document.write('<td valign="top"><a href="/' + link + '"><img src="/images/' + name + '" width="73" border="0" alt="' + alt + '"></a></td>');
}

function sub_section_link(input, required, link, name) {
	if (input == required) {
		document.write('<dt>&#8226; <strong>' + name + '</strong></dt>');
	} else {
		document.write('<dt>&#8226; <a href="/' + link + '">' + name + '</a></dt>');
	}
}
