+
+<script>
+function show_candidate_info(id) {
+ Element.hide($("show_candidate_link_" + id));
+ Element.show($("candidate_description_" + id));
+ Element.show($("hide_candidate_link_" + id));
+}
+
+function hide_candidate_info(id) {
+ Element.hide($("hide_candidate_link_" + id));
+ Element.hide($("candidate_description_" + id));
+ Element.show($("show_candidate_link_" + id));
+}
+</script>