function side_bar_link_onclick(strCategoryName) {
	var tables = document.getElementsByTagName("table");
	var target;
	for (var table_count = 0;
	         table_count < tables.length;
	         table_count++) {
		var table = tables[table_count];
		if (table.title === strCategoryName) {
			try {
				table.onmouseover();
			} catch (error) {
				window.status = "table.onmouseover not working!";
			}
			target = table;
		} else {
			try {
				table.onmouseout();
			} catch (error) {
				window.status = "table.onmouseout not working!";
			}
		}
	}
	if (target) {
		target_y = 0;
		while (target != null) {
			target_y += target.offsetTop;
			target = target.offsetParent;
		}
		setTimeout("window.scrollTo(0, target_y);", 40);
	}
}