2 <table class="sidebar_title" width="100%">
4 <td id="sidebar_title"><% t 'site.sidebar.search_results' %></td>
5 <td id="sidebar_close"><a href="javascript:closeSidebar()"><%= t 'site.sidebar.close' %></a></td>
8 <div id="sidebar_content">
12 <script type="text/javascript">
16 function openSidebar(options) {
17 options = options || {};
24 if (options.title) { $("sidebar_title").innerHTML = options.title; }
26 if (options.width) { $("sidebar").style.width = options.width; }
27 else { $("sidebar").style.width = "30%"; }
29 $("sidebar").style.display = "block";
33 onclose = options.onclose;
36 function closeSidebar() {
37 $("sidebar").style.display = "none";
47 function updateSidebar(title, content) {
48 $("sidebar_title").innerHTML = title;
49 $("sidebar_content").innerHTML = content;