16 <!-- Script to view/hide -->
17 <script type=
"text/javascript">
19 function toggle_visibility(
id) {
20 var e = document.getElementById(
id);
21 if(e.style.display ==
'block')
22 e.style.display =
'none';
24 e.style.display =
'block';
31 <h1>Properties of <?php echo $this->username(); ?></h1>
42 $this->set_interests();
44 $this->send_message();
49 <a href=
"#" style=
"text-decoration: none" onclick=
"toggle_visibility('interests');return false;">
52 <div
id=
"interests" style=
"display:none";>
56 $this->viewInterests();
63 <a href=
"#" style=
"text-decoration: none" onclick=
"toggle_visibility('participating');return false;">
66 <div
id=
"participating" style=
"display:none";>
70 $this->user_conferences();
77 <a href=
"#" style=
"text-decoration: none" onclick=
"toggle_visibility('papers');return false;">
80 <div
id=
"papers" style=
"display:none";>