function toggleDescription(itemID) {
	var rowId = "description" + itemID;
	var visibleDisplay = "table-row";
	if (document.all) {
		visibleDisplay = "block";
	}
	if (document.getElementById(rowId)) {
		var rowObj = document.getElementById(rowId);
		if (rowObj.style.display == visibleDisplay) {
			rowObj.style.display = "none";
		} else {
			rowObj.style.display = visibleDisplay;
		}
	}
	return false;
}
