function showDiv( divId, maxId ) {
	for( i = 1; i <= maxId; i++ ) {
		if( i == divId ) {
			document.getElementById( divId ).style.display = '';
			document.getElementById( divId + maxId ).style.borderBottom = 'none';
		} else {
			document.getElementById( i ).style.display = 'none';
			document.getElementById( i + maxId ).style.borderBottom = '1px solid #C0C0C0';
		}
	}
}