12 'Interests Confirmation',
16 <h1>Confirm New Interest Requests</h1>
17 You can confirm interests from the list or add
new ones manually.
21 <script type=
"text/javascript">
23 function toggle_visibility(
id) {
24 var e = document.getElementById(
id);
25 if(e.style.display ==
'block')
26 e.style.display =
'none';
28 e.style.display =
'block';
34 <a href=
"#" style=
"text-decoration: none" onclick=
"toggle_visibility('newtopic'); return false;">
35 <h3>NEW TOPIC REQUESTS</h3>
37 <div
id=
"newtopic" style=
"display:none";>
47 <a href=
"#" style=
"text-decoration: none" onclick=
"toggle_visibility('existingtopic'); return false;">
48 <h3>EXISTING TOPIC REQUESTS</h3>
50 <div
id=
"existingtopic" style=
"display:none";>
54 $this->existing_interests();