workaround for ie formatting bug
[openemr.git] / interface / main / main_navigation.php
blob1aba935f39873e54bce7e9fdb62501149647955e
1 <?
2 include_once("../globals.php");
3 include_once("../../library/acl.inc");
4 ?>
6 <html>
7 <head>
8 <title>Navigation</title>
10 <link rel=stylesheet href="<?echo $css_header;?>" type="text/css">
12 </head>
13 <body <?echo $nav_bg_line;?> topmargin=0 rightmargin=4 leftmargin=2 marginheight=0 bottommargin=0 link=#000000 vlink=#000000 alink=#000000>
15 <form border=0 method=post target="_top" name="find_patient" action="<?echo $rootdir?>/main/finder/patient_finder.php">
16 <?//<form border=0>?>
18 <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">
19 <tr>
20 <td width="10%" nowrap>
21 <?//<a href="javascript:document.find_patient.action='finder/patient_finder_keyboard.php';document.find_patient.submit();" class=link>Find Patient:</a>?>
22 <input type="entry" size="10" name="patient" />
23 <select name="findBy" size=1>
24 <option value="ID">ID</option>
25 <option value="Last" selected>Name</option>
26 <option value="SSN">SSN</option>
27 <option value="DOB">DOB</option>
28 </select>
29 </td>
31 <td width="5%" nowrap>
32 <a href="javascript:document.find_patient.action='<?echo $rootdir?>/main/finder/patient_finder.php';document.find_patient.submit();" class=link>&nbsp;Find&nbsp;Patient</a>
33 </td>
35 <td align="center" nowrap>
36 &nbsp;&nbsp;&nbsp;<a class="menu" target=_top href="../new/new_patient.php">New&nbsp;Patient</a>&nbsp;
37 </td>
39 <td align="center" nowrap>
40 &nbsp;<a href="../usergroup/user_info.php" target="Main" class="menu">Change&nbsp;Password</a>&nbsp;
41 </td>
43 <? if (acl_check('admin', 'calendar') || acl_check('admin', 'database') ||
44 acl_check('admin', 'forms') || acl_check('admin', 'practice') ||
45 acl_check('admin', 'users')) { ?>
46 <td align="center" nowrap>
47 &nbsp;<a class=menu target=_top href="../usergroup/usergroup.php">Administration</a>&nbsp;
48 </td>
49 <? } ?>
51 <td align="center" nowrap>
52 &nbsp;<a href="../reports/index.php" target="Main" class="menu">Reports</a>&nbsp;
53 </td>
55 <td align="center" nowrap>
56 &nbsp;<a href="onotes/office_comments.php" target="Main" class="menu">Notes</a>&nbsp;
57 </td>
59 <? if (acl_check('acct', 'rep') || acl_check('acct', 'eob') || acl_check('acct', 'bill')) { ?>
60 <td align="center" nowrap>
61 &nbsp;<a href="../billing/billing_report.php" target="Main" class="menu">Billing</a>&nbsp;
62 </td>
63 <? } ?>
65 <td align="center" nowrap>
66 &nbsp;<a href="main.php" target="Main" class="menu">Home</a>&nbsp;
67 </td>
69 <td align="center" nowrap>
70 &nbsp;<a href="../logout.php?auth=logout" target="_top" class="menu">Logout</a>&nbsp;&nbsp;
71 </td>
73 </tr>
74 </table>
76 </form>
78 </body>
79 </html>