39e29f511bc96fd6a93a21961e41dd9d7ef3d5aa
[kivitendo-erp.git] / templates / webpages / menu / menuv3.html
1 [%- USE T8 %]
2 [% USE HTML %]
3  <script type="text/javascript">
4  <!--
5 function on_keydown_quicksearch(e) {
6   var key;
7
8   if (window.event)
9     key = window.event.keyCode;   // IE
10   else
11     key = e.which;                // Firefox
12
13   if (key != 13)
14     return true;
15
16   var search_term = $("#search_term");
17   var value       = search_term.val();
18   if (!value)
19     return true;
20
21   var url = "ct.pl?action=list_contacts&INPUT_ENCODING=utf-8&filter.status=active&search_term=" + encodeURIComponent(value);
22
23   search_term.val('');
24   $("#win1").attr('src', url);
25
26   return false;
27 }
28
29 function clockon() {
30   var now = new Date();
31   var h = now.getHours();
32   var m = now.getMinutes();
33   document.getElementById('clock_id').innerHTML = (h<10?'0'+h:h)+":"+(m<10?'0'+m:m);
34   var timer=setTimeout("clockon()", 10000);
35 }
36 $(clockon);
37 //-->
38  </script>
39
40 <div id="frame-header">
41  <span class="frame-header-element frame-header-left">
42     [<a href="login.pl?action=company_logo" target="_blank">[% 'new Window' | $T8 %]</a>]
43     [<a href="JavaScript:top.print()">[% 'print' | $T8 %]</a>]
44     [[% 'Search contacts' | $T8 %] <input size="15" name="search_term" id="search_term" onkeydown="return on_keydown_quicksearch(event)">]
45  </span>
46  <span class="frame-header-element frame-header-right">
47     [[% 'User' | $T8 %]: [% MYCONFIG.login | html %] -
48     <a href="controller.pl?action=LoginScreen/logout" target="_top">[% 'logout' | $T8 %]</a>]
49     [% date %] <span id='clock_id' style='position:relative'></span>&nbsp;
50  </span>
51 </div>
52  <div id="menuv3">
53
54   [% menu %]
55
56  </div>
57  <div style="clear: both;"></div>