2 <table class="sidebar_title" width="100%">
4 <td align="left" id="sidebar_title">Search Results</td>
5 <td align="right"><a href="javascript:closeSidebar()">Close</a></td>
8 <div id="sidebar_content">
12 <script type="text/javascript">
14 function openSidebar() {
15 if (arguments.length) { $("sidebar").style.width = arguments[0]; }
16 else { $("sidebar").style.width = "30%"; }
18 $("sidebar").style.display = "block";
23 function closeSidebar() {
24 $("sidebar").style.display = "none";
29 function updateSidebar(title, content) {
30 $("sidebar_title").innerHTML = title;
31 $("sidebar_content").innerHTML = content;
34 function sidebarOpen(title) {
35 return $("sidebar").style.display == "block" &&
36 $("sidebar_title").innerHTML == title;