minor css changes
[koha.git] / koha-tmpl / intranet-tmpl / default / en / includes / auth-search-top.inc
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
3 <html>
4 <head>
5 <title>KOHA: INTRANET: Authorities</title>
6 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
7
8 <script language="JavaScript">
9 <!-- Hide from old browsers
10 function openWindow(targeturl, windowname) {
11 newwin =
12 window.open(targeturl,windowname,"height=480,width=640,scrollbars,resizable")
13 }
14 // end hiding -->
15 </script>
16
17 <script language="JavaScript" type="text/javascript">
18 function Help() {
19         newin=window.open("/cgi-bin/koha/help.pl","Koha Help",'width=600,height=600,toolbar=false,scrollbars=yes');
20 }
21
22 function addauthority() {
23         X = document.forms[0].authtype.value;
24         window.location="/cgi-bin/koha/authorities/authorities.pl?authtypecode="+X;
25 }
26 </script>
27
28 <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/includes/common-style.css">
29 <style type="text/css">
30 .authority {
31         background-color: #6b7cbe;
32         color:#FFFFFF;
33         text-decoration: normal;
34         font-weight: bold;
35         background-image:none;
36         }
37 a.authority:hover {
38         background-color: #6b7cbe;
39         color: #FFFFFF;
40         text-decoration: normal;
41         font-weight: bold;
42         }
43 </style>
44 </head>
45
46 <body>
47 <!-- MENUS -->
48 <!-- TMPL_IF NAME="loggedinusername" -->
49     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
50 <!-- TMPL_ELSE -->
51     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
52 <!-- /TMPL_IF -->