16 <script type=
"text/javascript">
18 function toggle_visibility(
id) {
19 var e = document.getElementById(
id);
20 if(e.style.display ===
'block')
21 e.style.display =
'none';
23 e.style.display =
'block';
30 <h1><b> MY CONFERENCES </b></h1>
32 All conferences that you are associated with are listed :
38 echo CHtml::link(
"Request New Conference",array(
'site/request_conference'));
45 <a href=
"#" style=
"text-decoration: none" onclick=
" toggle_visibility('administering'); return false;">
46 <h3>Administering</h3>
48 <div
id=
"administering" style=
"display:none";>
52 $this->administering();
59 <a href=
"#" style=
"text-decoration: none" onclick=
"toggle_visibility('authoring');return false;">
62 <div
id=
"authoring" style=
"display:none";>
73 <a href=
"#" style=
"text-decoration: none" onclick=
"toggle_visibility('refereeing');return false;">
76 <div
id=
"refereeing" style=
"display:none";>
87 <a href=
"#" style=
"text-decoration: none" onclick=
"toggle_visibility('attending');return false;">
90 <div
id=
"attending" style=
"display:none";>