Files for HIPAA-de-identification
[openemr.git] / interface / main / left_nav.php
blob0ffc90a30187553af5c1b1df6cd6a71ad5f1f9d8
1 <?php
2 // Copyright (C) 2006-2010 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // This provides the left navigation frame when $GLOBALS['concurrent_layout']
10 // is true. Following are notes as to what else was changed for this feature:
12 // * interface/main/main_screen.php: the top-level frameset.
13 // * interface/main/finder/patient_select.php: loads stuff when a new patient
14 // is selected.
15 // * interface/patient_file/summary/demographics.php: this is the first frame
16 // loaded when a new patient is chosen, and in turn sets the current pid and
17 // then loads the initial bottom frame.
18 // * interface/patient_file/summary/demographics_full.php: added support for
19 // setting a new pid, needed for going to demographics from billing.
20 // * interface/patient_file/summary/demographics_save.php: redisplay
21 // demographics.php and not the frameset.
22 // * interface/patient_file/summary/summary_bottom.php: new frameset for the
23 // summary, prescriptions and notes for a selected patient, cloned from
24 // patient_summary.php.
25 // * interface/patient_file/encounter/encounter_bottom.php: new frameset for
26 // the selected encounter, mosting coding/billing stuff, cloned from
27 // patient_encounter.php. This will also self-load the superbill pages
28 // as requested.
29 // * interface/usergroup/user_info.php: removed Back link.
30 // * interface/usergroup/admin_frameset.php: new frameset for Admin pages,
31 // cloned from usergroup.php.
32 // * interface/main/onotes/office_comments.php: removed Back link target.
33 // * interface/main/onotes/office_comments_full.php: changed Back link.
34 // * interface/billing/billing_report.php: removed Back link; added logic
35 // to properly go to demographics or to an encounter when requested.
36 // * interface/new/new.php: removed Back link and revised form target.
37 // * interface/new/new_patient_save.php: modified to load the demographics
38 // page to the current frame instead of loading a new frameset.
39 // * interface/patient_file/history/history.php: target change.
40 // * interface/patient_file/history/history_full.php: target changes.
41 // * interface/patient_file/history/history_save.php: target change.
42 // * interface/patient_file/history/encounters.php: link/target changes.
43 // * interface/patient_file/history/encounters_full.php: link/target changes.
44 // * interface/patient_file/encounter/encounter_top.php: another new frameset
45 // cloned from patient_encounter.php.
46 // * interface/patient_file/encounter/forms.php: link target removal.
47 // * interface/patient_file/encounter/new_form.php: target change.
48 // * interface/forms/newpatient/new.php, view.php, save.php: link/target
49 // changes.
50 // * interface/patient_file/summary/immunizations.php: removed back link.
51 // * interface/patient_file/summary/pnotes.php: changed link targets.
52 // * interface/patient_file/summary/pnotes_full.php: changed back link and
53 // added set_pid logic.
54 // * interface/patient_file/transaction/transactions.php: various changes.
55 // * interface/patient_file/transaction/add_transaction.php: new return js.
56 // * interface/patient_file/encounter/superbill_codes.php: target and link
57 // changes.
58 // * interface/patient_file/encounter/superbill_custom_full.php: target and
59 // link changes.
60 // * interface/patient_file/encounter/diagnosis.php: target changes.
61 // * interface/patient_file/encounter/diagnosis_full.php: target and link
62 // changes.
63 // * interface/main/authorizations/authorizations.php: link and target changes.
64 // * library/api.inc: url change.
65 // * interface/patient_file/summary/rx_frameset.php: new frameset.
66 // * interface/patient_file/summary/rx_left.php: new for prescriptions.
67 // * all encounter forms: remove all instances of "target=Main" and change
68 // all instances of "patient_encounter.php" to "encounter_top.php".
70 // Our find_patient form, when submitted, invokes patient_select.php in the
71 // upper frame. When the patient is selected, demographics.php is invoked
72 // with the set_pid parameter, which establishes the new session pid and also
73 // calls the setPatient() function (below). In this case demographics.php
74 // will also load the summary frameset into the bottom frame, invoking our
75 // loadFrame() and setRadio() functions.
77 // Similarly, we have the concept of selecting an encounter from the
78 // Encounters list, and then having that "stick" until some other encounter
79 // or a new encounter is chosen. We also have a navigation item for creating
80 // a new encounter. interface/patient_file/encounter/encounter_top.php
81 // supports set_encounter to establish an encounter.
83 // TBD: Include active_pid and/or active_encounter in relevant submitted
84 // form data, and add logic to the save routines to make sure they match
85 // the corresponding session values.
87 include_once("../globals.php");
88 include_once($GLOBALS['fileroot']."/library/acl.inc");
89 include_once($GLOBALS['fileroot']."/custom/code_types.inc.php");
90 include_once($GLOBALS['fileroot']."/library/patient.inc");
92 // This array defines the list of primary documents that may be
93 // chosen. Each element value is an array of 3 values:
95 // * Name to appear in the navigation table
96 // * Usage: 0 = global, 1 = patient-specific, 2 = encounter-specific
97 // * The URL relative to the interface directory
100 $primary_docs = array(
101 'ros' => array(xl('Roster') , 0, 'reports/players_report.php?embed=1'),
102 'cal' => array(xl('Calendar') , 0, 'main/main_info.php'),
103 'msg' => array(xl('Messages') , 0, 'main/messages/messages.php'),
104 'pwd' => array(xl('Password') , 0, 'usergroup/user_info.php'),
105 'adm' => array(xl('Admin') , 0, 'usergroup/admin_frameset.php'),
106 'rep' => array(xl('Reports') , 0, 'reports/index.php'),
107 'ono' => array(xl('Ofc Notes') , 0, 'main/onotes/office_comments.php'),
108 'fax' => array(xl('Fax/Scan') , 0, 'fax/faxq.php'),
109 'adb' => array(xl('Addr Bk') , 0, 'usergroup/addrbook_list.php'),
110 'ort' => array(xl('Proc Cat') , 0, 'orders/types.php'),
111 'orb' => array(xl('Proc Bat') , 0, 'orders/orders_results.php?batch=1'),
112 'cht' => array(xl('Chart Trk') , 0, '../custom/chart_tracker.php'),
113 'imp' => array(xl('Import') , 0, '../custom/import.php'),
114 'bil' => array(xl('Billing') , 0, 'billing/billing_report.php'),
115 'sup' => array(xl('Superbill') , 0, 'patient_file/encounter/superbill_custom_full.php'),
116 'aun' => array(xl('Authorizations'), 0, 'main/authorizations/authorizations.php'),
117 'new' => array(xl('New Pt') , 0, 'new/new.php'),
118 'dem' => array(xl('Patient') , 1, "patient_file/summary/demographics.php"),
119 'his' => array(xl('History') , 1, 'patient_file/history/history.php'),
120 'ens' => array(xl('Encounters'), 1, 'patient_file/history/encounters.php'),
121 'nen' => array(xl('New Enctr') , 1, 'forms/newpatient/new.php?autoloaded=1&calenc='),
122 'pre' => array(xl('Rx') , 1, 'patient_file/summary/rx_frameset.php'),
123 'iss' => array(xl('Issues') , 1, 'patient_file/summary/stats_full.php?active=all'),
124 'imm' => array(xl('Immunize') , 1, 'patient_file/summary/immunizations.php'),
125 'doc' => array(xl('Documents') , 1, '../controller.php?document&list&patient_id={PID}'),
126 'orp' => array(xl('Proc Pending Rev'), 1, 'orders/orders_results.php?review=1'),
127 'orr' => array(xl('Proc Res') , 1, 'orders/orders_results.php'),
128 'prp' => array(xl('Pt Report') , 1, 'patient_file/report/patient_report.php'),
129 'pno' => array(xl('Pt Notes') , 1, 'patient_file/summary/pnotes.php'),
130 'tra' => array(xl('Transact') , 1, 'patient_file/transaction/transactions.php'),
131 'sum' => array(xl('Summary') , 1, 'patient_file/summary/summary_bottom.php'),
132 'enc' => array(xl('Encounter') , 2, 'patient_file/encounter/encounter_top.php'),
134 if ($GLOBALS['use_charges_panel'] || $GLOBALS['concurrent_layout'] == 2) {
135 $primary_docs['cod'] = array(xl('Charges'), 2, 'patient_file/encounter/encounter_bottom.php');
138 // This section decides which navigation items will not appear.
140 $disallowed = array();
142 $disallowed['adm'] = !(acl_check('admin', 'calendar') ||
143 acl_check('admin', 'database') || acl_check('admin', 'forms') ||
144 acl_check('admin', 'practice') || acl_check('admin', 'users') ||
145 acl_check('admin', 'acl') || acl_check('admin', 'super') ||
146 acl_check('admin', 'superbill'));
148 $disallowed['bil'] = !(acl_check('acct', 'rep') || acl_check('acct', 'eob') ||
149 acl_check('acct', 'bill'));
151 $tmp = acl_check('patients', 'demo');
152 $disallowed['new'] = !($tmp == 'write' || $tmp == 'addonly');
154 if ( isset ($GLOBALS['hylafax_server']) && isset ($GLOBALS['scanner_output_directory']) ) {
155 $disallowed['fax'] = !($GLOBALS['hylafax_server'] || $GLOBALS['scanner_output_directory']);
158 $disallowed['ros'] = !$GLOBALS['athletic_team'];
160 $disallowed['iss'] = !((acl_check('encounters', 'notes') == 'write' ||
161 acl_check('encounters', 'notes_a') == 'write') &&
162 acl_check('patients', 'med') == 'write');
164 $disallowed['imp'] = $disallowed['new'] ||
165 !is_readable("$webserver_root/custom/import.php");
167 $disallowed['cht'] = !is_readable("$webserver_root/custom/chart_tracker.php");
169 $disallowed['pre'] = !(acl_check('patients', 'med'));
171 // Helper functions for treeview generation.
172 function genTreeLink($frame, $name, $title, $mono=false) {
173 global $primary_docs, $disallowed;
174 if (empty($disallowed[$name])) {
175 $id = $name . $primary_docs[$name][1];
176 echo "<li><a href='' id='$id' onclick=\"";
177 if ($mono) {
178 if ($frame == 'RTop')
179 echo "forceSpec(true,false);";
180 else
181 echo "forceSpec(false,true);";
183 echo "return loadFrame2('$id','$frame','" .
184 $primary_docs[$name][2] . "')\">" . $title . "</a></li>";
187 function genMiscLink($frame, $name, $level, $title, $url, $mono=false) {
188 global $disallowed;
189 if (empty($disallowed[$name])) {
190 $id = $name . $level;
191 echo "<li><a href='' id='$id' onclick=\"";
192 if ($mono) {
193 if ($frame == 'RTop')
194 echo "forceSpec(true,false);";
195 else
196 echo "forceSpec(false,true);";
198 echo "return loadFrame2('$id','$frame','" .
199 $url . "')\">" . $title . "</a></li>";
202 function genPopLink($title, $url, $linkid='') {
203 echo "<li><a href='' ";
204 if ($linkid) echo "id='$linkid' ";
205 echo "onclick=\"return repPopup('$url')\"" .
206 ">" . $title . "</a></li>";
208 function genDualLink($topname, $botname, $title) {
209 global $primary_docs, $disallowed;
210 if (empty($disallowed[$topname]) && empty($disallowed[$botname])) {
211 $topid = $topname . $primary_docs[$topname][1];
212 $botid = $botname . $primary_docs[$botname][1];
213 echo "<li><a href='' id='$topid' " .
214 "onclick=\"return loadFrameDual('$topid','$botid','" .
215 $primary_docs[$topname][2] . "','" .
216 $primary_docs[$botname][2] . "')\">" . $title . "</a></li>";
220 function genPopupsList($style='') {
221 global $disallowed, $webserver_root;
223 <select name='popups' onchange='selpopup(this)' style='background-color:transparent;font-size:9pt;<?php echo $style; ?>'>
224 <option value=''><?php xl('Popups','e'); ?></option>
225 <?php if (!$disallowed['iss']) { ?>
226 <option value='../patient_file/problem_encounter.php'><?php xl('Issues','e'); ?></option>
227 <?php } ?>
228 <?php if (!$GLOBALS['ippf_specific']) { ?>
229 <option value='../../custom/export_xml.php'><?php xl('Export','e'); ?></option>
230 <option value='../../custom/import_xml.php'><?php xl('Import','e'); ?></option>
231 <?php } ?>
232 <?php if ($GLOBALS['athletic_team']) { ?>
233 <option value='../reports/players_report.php'><?php xl('Roster','e'); ?></option>
234 <?php } ;
235 if (!$GLOBALS['disable_calendar']) { ?>
236 <option value='../reports/appointments_report.php?patient=<?php echo $pid ?>'><?php xl('Appts','e'); ?></option>
237 <?php } ;
238 if (file_exists("$webserver_root/custom/refer.php")) { ?>
239 <option value='../../custom/refer.php'><?php xl('Refer','e'); ?></option>
240 <?php } ?>
241 <?php // if (file_exists("$webserver_root/custom/fee_sheet_codes.php")) { ?>
242 <option value='../patient_file/printed_fee_sheet.php?fill=1'><?php xl('Superbill','e'); ?></option>
243 <?php // } ?>
244 <?php if ($GLOBALS['inhouse_pharmacy']) { ?>
245 <option value='../patient_file/front_payment.php'><?php xl('Prepay','e'); ?></option>
246 <option value='../patient_file/pos_checkout.php'><?php xl('Checkout','e'); ?></option>
247 <?php } else { ?>
248 <option value='../patient_file/front_payment.php'><?php xl('Payment','e'); ?></option>
249 <?php } ?>
250 <?php if (is_dir("$webserver_root/custom/letter_templates")) { ?>
251 <option value='../patient_file/letter.php'><?php xl('Letter','e'); ?></option>
252 <?php } ?>
253 </select>
254 <?php
258 <html>
259 <head>
260 <title>Navigation</title>
261 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
263 <style type="text/css">
264 body {
265 font-size:8pt;
266 font-weight:normal;
267 padding: 5px 3px 5px 3px;
269 .smalltext {
270 font-family:sans-serif;
271 font-size:8pt;
272 font-weight:normal;
274 a.navitem, a.navitem:visited {
275 color:#0000ff;
276 font-family:sans-serif;
277 font-size:8pt;
278 font-weight:bold;
280 .inputtext {
281 font-size:9pt;
282 font-weight:normal;
283 border-style:solid;
284 border-width:1px;
285 padding-left:2px;
286 padding-right:2px;
287 border-color: #000000;
288 background-color:transparent;
291 #navigation ul {
292 background-color:transparent;
294 </style>
296 <link rel="stylesheet" href="../../library/js/jquery.treeview-1.3/jquery.treeview.css" />
297 <script src="../../library/js/jquery-1.2.2.min.js" type="text/javascript"></script>
298 <script src="../../library/js/jquery.treeview-1.3/jquery.treeview.min.js" type="text/javascript"></script>
300 <script type="text/javascript" src="../../library/dialog.js"></script>
302 <script language='JavaScript'>
304 // Master values for current pid and encounter.
305 var active_pid = 0;
306 var active_encounter = 0;
308 // Current selections in the top and bottom frames.
309 var topName = '';
310 var botName = '';
312 // Expand and/or collapse frames in response to checkbox clicks.
313 // fnum indicates which checkbox was clicked (1=left, 2=right).
314 function toggleFrame(fnum) {
315 var f = document.forms[0];
316 var fset = top.document.getElementById('fsright');
317 if (!f.cb_top.checked && !f.cb_bot.checked) {
318 if (fnum == 1) f.cb_bot.checked = true;
319 else f.cb_top.checked = true;
321 var rows = f.cb_top.checked ? '*' : '0';
322 rows += f.cb_bot.checked ? ',*' : ',0';
323 fset.rows = rows;
324 fset.rows = rows;
327 // Load the specified url into the specified frame (RTop or RBot).
328 // The URL provided must be relative to interface.
329 function loadFrame(fname, frame, url) {
330 top.restoreSession();
331 var i = url.indexOf('{PID}');
332 if (i >= 0) url = url.substring(0,i) + active_pid + url.substring(i+5);
333 top.frames[frame].location = '<?php echo "$web_root/interface/" ?>' + url;
334 if (frame == 'RTop') topName = fname; else botName = fname;
337 // Load the specified url into a frame to be determined, with the specified
338 // frame as the default; the url must be relative to interface.
339 function loadFrame2(fname, frame, url) {
340 var usage = fname.substring(3);
341 if (active_pid == 0 && usage > '0') {
342 alert('<?php xl('You must first select or add a patient.','e') ?>');
343 return false;
345 if (active_encounter == 0 && usage > '1') {
346 alert('<?php xl('You must first select or create an encounter.','e') ?>');
347 return false;
349 var f = document.forms[0];
350 top.restoreSession();
351 var i = url.indexOf('{PID}');
352 if (i >= 0) url = url.substring(0,i) + active_pid + url.substring(i+5);
353 var fi = f.sel_frame.selectedIndex;
354 if (fi == 1) frame = 'RTop'; else if (fi == 2) frame = 'RBot';
355 if (!f.cb_bot.checked) frame = 'RTop'; else if (!f.cb_top.checked) frame = 'RBot';
356 top.frames[frame].location = '<?php echo "$web_root/interface/" ?>' + url;
357 if (frame == 'RTop') topName = fname; else botName = fname;
358 return false;
361 // Make sure the the top and bottom frames are open or closed, as specified.
362 function forceSpec(istop, isbot) {
363 var f = document.forms[0];
364 if (f.cb_top.checked != istop) {
365 f.cb_top.checked = istop;
366 toggleFrame(1);
368 if (f.cb_bot.checked != isbot) {
369 f.cb_bot.checked = isbot;
370 toggleFrame(2);
374 // Make sure both frames are open.
375 function forceDual() {
376 forceSpec(true, true);
379 // Load the specified url into a frame to be determined, with the specified
380 // frame as the default; the url must be relative to interface.
381 function loadFrameDual(tname, bname, topurl, boturl) {
382 var topusage = tname.substring(3);
383 var botusage = bname.substring(3);
384 if (active_pid == 0 && (topusage > '0' || botusage > '0')) {
385 alert('<?php xl('You must first select or add a patient.','e') ?>');
386 return false;
388 if (active_encounter == 0 && (topusage > '1' || botusage > '1')) {
389 alert('<?php xl('You must first select or create an encounter.','e') ?>');
390 return false;
392 var f = document.forms[0];
393 forceDual();
394 top.restoreSession();
395 var i = topurl.indexOf('{PID}');
396 if (i >= 0) topurl = topurl.substring(0,i) + active_pid + topurl.substring(i+5);
397 i = boturl.indexOf('{PID}');
398 if (i >= 0) boturl = boturl.substring(0,i) + active_pid + boturl.substring(i+5);
399 top.frames.RTop.location = '<?php echo "$web_root/interface/" ?>' + topurl;
400 top.frames.RBot.location = '<?php echo "$web_root/interface/" ?>' + boturl;
401 topName = tname;
402 botName = bname;
403 return false;
406 // Select a designated radio button. raname may be either the radio button
407 // array name (rb_top or rb_bot), or the frame name (RTop or RBot).
408 // You should call this if you directly load a document that does not
409 // correspond to the current radio button setting.
410 function setRadio(raname, rbid) {
411 <?php if ($GLOBALS['concurrent_layout'] != 2) { ?>
412 var f = document.forms[0];
413 if (raname == 'RTop') raname = 'rb_top';
414 if (raname == 'RBot') raname = 'rb_bot';
415 for (var i = 0; i < f[raname].length; ++i) {
416 if (f[raname][i].value.substring(0,3) == rbid) {
417 f[raname][i].checked = true;
418 return true;
421 <?php } ?>
422 return false;
425 // Set disabled/enabled state of radio buttons and associated labels
426 // depending on whether there is an active patient or encounter.
427 function syncRadios() {
428 var f = document.forms[0];
429 <?php if ($GLOBALS['concurrent_layout'] == 2) { ?>
430 var nlinks = document.links.length;
431 for (var i = 0; i < nlinks; ++i) {
432 var lnk = document.links[i];
433 if (lnk.id.length != 4) continue;
434 var usage = lnk.id.substring(3);
435 if (usage == '1' || usage == '2') {
436 var da = false;
437 if (active_pid == 0) da = true;
438 if (active_encounter == 0 && usage > '1') da = true;
439 lnk.style.color = da ? '#888888' : '#0000ff';
442 <?php } else { ?>
443 for (var i = 0; i < f.rb_top.length; ++i) {
444 var da = false;
445 var rb1 = f.rb_top[i];
446 var rb2 = f.rb_bot[i];
447 var rbid = rb1.value.substring(0,3);
448 var usage = rb1.value.substring(3);
449 if (active_pid == 0 && usage > '0') da = true;
450 if (active_encounter == 0 && usage > '1') da = true;
451 // daemon_frame can also set special label colors, so don't mess with
452 // them unless we have to.
453 if (rb1.disabled != da) {
454 rb1.disabled = da;
455 rb2.disabled = da;
456 document.getElementById('lbl_' + rbid).style.color = da ? '#888888' : '#000000';
459 <?php } ?>
460 f.popups.disabled = (active_pid == 0);
463 function goHome() {
464 top.frames['RTop'].location='<?php echo $GLOBALS['default_top_pane']?>';
465 top.frames['RBot'].location='authorizations/authorizations.php';
469 var my_window;
470 function initFilter() {
471 my_window = window.open("../../custom/search.php", "mywindow","status=1");
474 function processFilter( fieldString ) {
475 document.getElementById('searchFields').value=fieldString;
476 findPatient( "Filter" );
477 my_window.close();
481 // Process the click to find a patient by name, id, ssn or dob.
482 function findPatient(findby) {
483 var f = document.forms[0];
484 if (! f.cb_top.checked) {
485 f.cb_top.checked = true;
486 toggleFrame(1);
488 f.findBy.value = findby;
489 setRadio('rb_top', 'dem');
490 top.restoreSession();
491 document.find_patient.submit();
494 // Helper function to set the contents of a div.
495 function setSomeContent(id, content, doc) {
496 if (doc.getElementById) {
497 var x = doc.getElementById(id);
498 x.innerHTML = '';
499 x.innerHTML = content;
501 else if (doc.all) {
502 var x = doc.all[id];
503 x.innerHTML = content;
506 function setDivContent(id, content) {
507 setSomeContent(id, content, document);
509 function setTitleContent(id, content) {
510 setSomeContent(id, content, parent.Title.document);
513 // This is called automatically when a new patient is set, to make sure
514 // there are no patient-specific documents showing stale data. If a frame
515 // was just loaded with data for the correct patient, its name is passed so
516 // that it will not be zapped. At this point the new server-side pid is not
517 // assumed to be set, so this function will only load global data.
518 function reloadPatient(frname) {
519 var f = document.forms[0];
520 if (topName.length > 3 && topName.substring(3) > '0' && frname != 'RTop') {
521 loadFrame('cal0','RTop', '<?php echo $primary_docs['cal'][2]; ?>');
522 setRadio('rb_top', 'cal');
524 if (botName.length > 3 && botName.substring(3) > '0' && frname != 'RBot') {
525 loadFrame('aun0','RBot', '<?php echo $primary_docs['aun'][2]; ?>');
526 setRadio('rb_bot', 'aun');
530 // Reload encounter-specific frames, excluding a specified frame. At this
531 // point the new server-side encounter ID may not be set and loading the same
532 // document for the new encounter will not work, so load patient info instead.
533 function reloadEncounter(frname) {
534 var f = document.forms[0];
535 if (topName.length > 3 && topName.substring(3) > '1' && frname != 'RTop') {
536 loadFrame('dem1','RTop', '<?php echo $primary_docs['dem'][2]; ?>');
537 setRadio('rb_top', 'dem');
539 if (botName.length > 3 && botName.substring(3) > '1' && frname != 'RBot') {
540 loadFrame('ens1','RBot', '<?php echo $primary_docs['ens'][2]; ?>');
541 setRadio('rb_bot', 'ens');
545 // Call this to announce that the patient has changed. You must call this
546 // if you change the session PID, so that the navigation frame will show the
547 // correct patient and so that the other frame will be reloaded if it contains
548 // patient-specific information from the previous patient. frname is the name
549 // of the frame that the call came from, so we know to only reload content
550 // from the *other* frame if it is patient-specific.
551 function setPatient(pname, pid, pubpid, frname, str_dob) {
552 var str = '<a href=\'javascript:;\' onclick="parent.left_nav.loadCurrentPatientFromTitle()"><b>' + pname + ' (' + pubpid + ')</b></a>';
553 setDivContent('current_patient', str);
554 setTitleContent('current_patient', str + str_dob);
555 if (pid == active_pid) return;
556 setDivContent('current_encounter', '<b><?php xl('None','e'); ?></b>');
557 active_pid = pid;
558 active_encounter = 0;
559 if (frname) reloadPatient(frname);
560 syncRadios();
561 $(parent.Title.document.getElementById('current_patient_block')).show();
562 var encounter_block = $(parent.Title.document.getElementById('current_encounter_block'));
563 $(encounter_block).hide();
566 function loadCurrentPatientFromTitle() {
567 top.frames['RTop'].location='../patient_file/summary/demographics.php';
570 function getEncounterTargetFrame( name ) {
571 var bias = <?php echo $primary_docs[ 'enc' ][ 1 ]?>;
572 var f = document.forms[0];
573 var r = 'RTop';
574 if (f.cb_top.checked && f.cb_bot.checked) {
575 if ( bias == 2 ) {
576 r = 'RBot';
577 } else {
578 r = 'RTop';
580 } else {
581 if ( f.cb_top.checked ) {
582 r = 'RTop';
583 } else if ( f.cb_bot.checked ) {
584 r = 'RBot';
587 return r;
590 // Call this to announce that the encounter has changed. You must call this
591 // if you change the session encounter, so that the navigation frame will
592 // show the correct encounter and so that the other frame will be reloaded if
593 // it contains encounter-specific information from the previous encounter.
594 // frname is the name of the frame that the call came from, so we know to only
595 // reload encounter-specific content from the *other* frame.
596 function setEncounter(edate, eid, frname) {
597 if (eid == active_encounter) return;
598 if (!eid) edate = '<?php xl('None','e'); ?>';
599 var str = '<b>' + edate + '</b>';
600 setDivContent('current_encounter', str);
601 active_encounter = eid;
602 reloadEncounter(frname);
603 syncRadios();
604 var encounter_block = $(parent.Title.document.getElementById('current_encounter_block'));
605 var encounter = $(parent.Title.document.getElementById('current_encounter'));
606 var estr = '<a href=\'javascript:;\' onclick="parent.left_nav.loadCurrentEncounterFromTitle()"><b>' + edate + ' (' + eid + ')</b></a>';
607 encounter.html( estr );
608 encounter_block.show();
611 function loadCurrentEncounterFromTitle() {
612 top.frames[ parent.left_nav.getEncounterTargetFrame('enc') ].location='../patient_file/encounter/forms.php';
615 // You must call this if you delete the active patient (or if for any other
616 // reason you "close" the active patient without opening a new one), so that
617 // the appearance of the navigation frame will be correct and so that any
618 // stale content will be reloaded.
619 function clearPatient() {
620 if (active_pid == 0) return;
621 var f = document.forms[0];
622 active_pid = 0;
623 active_encounter = 0;
624 setDivContent('current_encounter', '<b><?php xl('None','e'); ?></b>');
625 setDivContent('current_patient', '<b><?php xl('None','e'); ?></b>');
626 setTitleContent('current_patient', '<b><?php xl('None','e'); ?></b>');
627 reloadPatient('');
628 syncRadios();
631 // You must call this if you delete the active encounter (or if for any other
632 // reason you "close" the active encounter without opening a new one), so that
633 // the appearance of the navigation frame will be correct and so that any
634 // stale content will be reloaded.
635 function clearEncounter() {
636 if (active_encounter == 0) return;
637 setDivContent('current_encounter', '<b><?php xl('None','e'); ?></b>');
638 active_encounter = 0;
639 reloadEncounter('');
640 syncRadios();
643 // You can call this to make sure the session pid is what we expect.
644 function pidSanityCheck(pid) {
645 if (pid != active_pid) {
646 alert('Session patient ID is ' + pid + ', expecting ' + active_pid +
647 '. This session is unstable and should be abandoned. Do not use ' +
648 'OpenEMR in multiple browser windows!');
649 return false;
651 return true;
654 // You can call this to make sure the session encounter is what we expect.
655 function encounterSanityCheck(eid) {
656 if (eid != active_encounter) {
657 alert('Session encounter ID is ' + eid + ', expecting ' + active_encounter +
658 '. This session is unstable and should be abandoned. Do not use ' +
659 'OpenEMR in multiple browser windows!');
660 return false;
662 return true;
665 // Pop up a report.
666 function repPopup(aurl) {
667 top.restoreSession();
668 window.open('<?php echo "$web_root/interface/reports/" ?>' + aurl, '_blank', 'width=750,height=550,resizable=1,scrollbars=1');
669 return false;
672 // This is invoked to pop up some window when a popup item is selected.
673 function selpopup(selobj) {
674 var i = selobj.selectedIndex;
675 var opt = selobj.options[i];
676 if (i > 0) {
677 var width = 750;
678 var height = 550;
679 if (opt.text == 'Export' || opt.text == 'Import') {
680 width = 500;
681 height = 400;
683 else if (opt.text == 'Refer') {
684 width = 700;
685 height = 500;
687 dlgopen(opt.value, '_blank', width, height);
689 selobj.selectedIndex = 0;
692 // Treeview activation stuff:
693 $(document).ready(function(){
694 $("#navigation").treeview({
695 animated: "fast",
696 collapsed: true,
697 unique: <?php echo $GLOBALS['athletic_team'] ? 'false' : 'true' ?>,
698 toggle: function() {
699 window.console && console.log("%o was toggled", this);
704 </script>
706 </head>
708 <body class="body_nav">
710 <form method='post' name='find_patient' target='RTop'
711 action='<?php echo $rootdir ?>/main/finder/patient_select.php'>
713 <?php if ($GLOBALS['concurrent_layout'] == 2) { ?>
715 <center>
716 <select name='sel_frame' style='background-color:transparent;font-size:9pt;width:<?php echo $GLOBALS['athletic_team'] ? 47 : 100; ?>%;'>
717 <option value='0'><?php xl('Default','e'); ?></option>
718 <option value='1'><?php xl('Top','e'); ?></option>
719 <option value='2'><?php xl('Bottom','e'); ?></option>
720 </select>
721 <?php if ($GLOBALS['athletic_team']) genPopupsList('width:47%'); ?>
722 </center>
724 <table cellpadding='0' cellspacing='0' border='0' width='100%'>
725 <tr>
726 <td class='smalltext' nowrap>
727 <input type='checkbox' name='cb_top' onclick='toggleFrame(1)' checked />
728 <b><?php xl('Top','e') ?></b>
729 </td>
730 <td class='smalltext' align='right' nowrap>
731 <b><?php xl('Bot','e') ?></b>
732 <input type='checkbox' name='cb_bot' onclick='toggleFrame(2)' <?php if (empty($GLOBALS['athletic_team'])) echo 'checked '; ?>/>
733 </td>
734 </tr>
735 </table>
737 <?php if ($GLOBALS['athletic_team']) { // Tree menu for athletic teams ?>
739 <ul id="navigation">
740 <li class="open"><span><?php xl('Patient/Client','e') ?></span>
741 <ul>
742 <li class="open"><span><?php xl('Demographics','e') ?></span>
743 <ul>
744 <?php genTreeLink('RTop','new',($GLOBALS['full_new_patient_form'] ? xl('New/Search') : xl('New'))); ?>
745 <?php genTreeLink('RTop','dem',xl('Current')); ?>
746 </ul>
747 </li>
748 <li class="open"><span><?php xl('Medical Records','e') ?></span>
749 <ul>
750 <?php // genPopLink (xl('Team Roster'),'players_report.php'); ?>
752 <?php genTreeLink('RTop','ros',xl('Weekly Exposures'),true); ?>
753 <?php genMiscLink('RTop','ros','0',xl('Team Roster'),'reports/old_players_report.php?embed=1',true); ?>
754 <?php if (!$GLOBALS['disable_calendar']) genTreeLink('RTop','cal',xl('Calendar'),true); ?>
756 <?php genDualLink('nen','ens',xl('New Consultation')); // with ens on bottom ?>
758 <?php // genDualLink('enc','ens','Current Consultation'); // with ens on bottom ?>
759 <?php genTreeLink('RTop','enc',xl('Current Consultation')); // encounter_top will itself load ens on bottom ?>
761 <?php // genDualLink('dem','ens',xl('Previous Consultations')); // with dem on top ?>
762 <?php genTreeLink('RBot','ens',xl('Previous Consultations'),true); ?>
763 <?php genDualLink('his','ens',xl('PPE + Prev Med/Surg Hx')); // with ens on bottom ?>
765 <?php // genTreeLink('RBot','nen',xl('New Allergy')); // nen with Allergy in chief complaint ?>
766 <?php genPopLink('New Allergy','../patient_file/summary/add_edit_issue.php?thistype=allergy','xxx1'); ?>
768 <?php genTreeLink('RTop','iss',xl('View/Edit Allergies')); // somehow emphasizing allergies...? ?>
769 <?php genDualLink('iss','ens',xl('Problems/Issues')); // with ens on bottom ?>
770 <?php genDualLink('tra','ens',xl('Transactions/Referrals')); // new transaction form on top and tra list on bottom (or ens if no tra) ?>
771 <?php if (!$GLOBALS['disable_immunizations']) genDualLink('his','imm',xl('Immunizations')); // imm on bottom, his on top ?>
772 <?php if (acl_check('patients', 'med') && !$GLOBALS['disable_prescriptions']) genDualLink('his','pre',xl('Prescriptions')); // pre on bottom, his on top ?>
773 <?php genTreeLink('RTop','doc',xl('Document/Imaging Store'),true); ?>
774 <?php genTreeLink('RTop','prp',xl('Patient Printed Report')); ?>
775 <?php genDualLink('dem','pno',xl('Additional Notes')); // with dem on top ?>
776 <li><a href='' onClick="return repPopup('../patient_file/letter.php')" id='prp1'>Letter</a></li>
777 <?php genPopLink('Address Book','../usergroup/addrbook_list.php?popup=1'); ?>
778 </ul>
779 </li>
780 </ul>
781 </li>
782 <li class="open"><span><?php xl('Reports','e') ?></span>
783 <ul>
784 <li class="open"><span><?php xl('Athletic/Injury','e') ?></span>
785 <ul>
786 <?php genTreeLink('RTop','prp',xl('Patient Printed Report')); // also appears above ?>
787 <?php genPopLink(xl('Games/Events Missed'),'absences_report.php'); ?>
788 <?php genPopLink(xl('Injury Surveillance'),'football_injury_report.php'); ?>
789 <?php genPopLink(xl('Team Injury Overview'),'injury_overview_report.php'); ?>
790 </ul>
791 </li>
792 <li><span><?php xl('Patient/Client','e') ?></span>
793 <ul>
794 <?php genPopLink('List','patient_list.php'); ?>
795 <?php if (acl_check('patients', 'med') && !$GLOBALS['disable_prescriptions']) genPopLink(xl('Prescriptions'),'prescriptions_report.php'); ?>
796 <?php genPopLink(xl('Referrals'),'referrals_report.php'); ?>
797 </ul>
798 </li>
799 <li><span><?php xl('Visits','e') ?></span>
800 <ul>
801 <?php if (!$GLOBALS['disable_calendar']) genPopLink(xl('Appointments'),'appointments_report.php'); ?>
802 <?php genPopLink(xl('Encounters'),'encounters_report.php'); ?>
803 <?php if (!$GLOBALS['disable_calendar']) genPopLink(xl('Appt-Enc'),'appt_encounter_report.php'); ?>
804 </ul>
805 </li>
806 <li><span><?php xl('General','e') ?></span>
807 <ul>
808 <?php genPopLink(xl('Services'),'services_by_category.php'); ?>
809 <?php if ($GLOBALS['inhouse_pharmacy']) genPopLink(xl('Inventory'),'inventory_list.php'); ?>
810 <?php if ($GLOBALS['inhouse_pharmacy']) genPopLink(xl('Destroyed'),'destroyed_drugs_report.php'); ?>
811 </ul>
812 </li>
813 </ul>
814 </li>
815 <li><span><?php xl('Fees','e') ?></span>
816 <ul>
817 <?php genMiscLink('RBot','cod','2',xl('Fee Sheet'),'patient_file/encounter/load_form.php?formname=fee_sheet'); ?>
818 <?php genMiscLink('RBot','bil','1',xl('Checkout'),'patient_file/pos_checkout.php?framed=1'); ?>
819 </ul>
820 </li>
821 <?php if ($GLOBALS['inhouse_pharmacy'] && acl_check('admin', 'drugs')) genMiscLink('RTop','adm','0',xl('Inventory'),'drugs/drug_inventory.php'); ?>
822 <li><span><?php xl('Administration','e') ?></span>
823 <ul>
824 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Globals'),'super/edit_globals.php'); ?>
825 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Facilities'),'usergroup/facilities.php'); ?>
826 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Users'),'usergroup/usergroup_admin.php'); ?>
827 <?php genTreeLink('RTop','pwd','Users Password Change'); ?>
828 <?php if (acl_check('admin', 'practice' )) genMiscLink('RTop','adm','0',xl('Practice'),'../controller.php?practice_settings'); ?>
829 <?php if (acl_check('admin', 'superbill')) genTreeLink('RTop','sup',xl('Services')); ?>
830 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Layouts'),'super/edit_layout.php'); ?>
831 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Lists'),'super/edit_list.php'); ?>
832 <?php if (acl_check('admin', 'acl' )) genMiscLink('RTop','adm','0',xl('ACL'),'usergroup/adminacl.php'); ?>
833 <?php if ( ($GLOBALS['include_de_identification']) && (acl_check('admin', 'super' )) ) genMiscLink('RTop','adm','0',xl('De Identification'),'de_identification_forms/de_identification_screen1.php'); ?>
834 <?php if ( ($GLOBALS['include_de_identification']) && (acl_check('admin', 'super' )) ) genMiscLink('RTop','adm','0',xl('Re Identification'),'de_identification_forms/re_identification_input_screen.php'); ?>
835 <li><span><?php xl('Other','e') ?></span>
836 <ul>
837 <?php if (acl_check('admin', 'forms' )) genMiscLink('RTop','adm','0',xl('Forms'),'forms_admin/forms_admin.php'); ?>
838 <?php if (acl_check('admin', 'calendar') && !$GLOBALS['disable_calendar']) genMiscLink('RTop','adm','0',xl('Calendar'),'main/calendar/index.php?module=PostCalendar&type=admin&func=modifyconfig'); ?>
839 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Logs'),'logview/logview.php'); ?>
840 <?php if (acl_check('admin', 'database')) genMiscLink('RTop','adm','0',xl('Database'),'../phpmyadmin/index.php'); ?>
841 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Backup'),'main/backup.php'); ?>
842 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Certificates'),'usergroup/ssl_certificates_admin.php'); ?>
843 </ul>
844 </li>
845 </ul>
846 </li>
847 <li><span><?php xl('Miscellaneous','e') ?></span>
848 <ul>
849 <?php genTreeLink('RBot','aun',xl('Authorizations')); ?>
850 <?php genTreeLink('RTop','fax',xl('Fax/Scan')); ?>
851 <?php genTreeLink('RTop','adb',xl('Addr Book')); ?>
852 <?php genTreeLink('RTop','ono',xl('Ofc Notes')); ?>
853 <?php genMiscLink('RTop','adm','0',xl('BatchCom'),'batchcom/batchcom.php'); ?>
854 </ul>
855 </li>
856 </ul>
858 <?php } else { // not athletic team ?>
860 <ul id="navigation">
861 <?php if (!$GLOBALS['disable_calendar'] && !$GLOBALS['ippf_specific']) genTreeLink('RTop','cal',xl('Calendar')); ?>
862 <?php genTreeLink('RTop','msg',xl('Messages')); ?>
863 <li class="open"><span><?php xl('Patient/Client','e') ?></span>
864 <ul>
865 <li><span><?php xl('Management','e') ?></span>
866 <ul>
867 <?php genTreeLink('RTop','new',($GLOBALS['full_new_patient_form'] ? xl('New/Search') : xl('New'))); ?>
868 <?php genTreeLink('RTop','dem',xl('Current')); ?>
869 </ul>
870 </li>
871 <li class="open"><span><?php xl('Visits','e') ?></span>
872 <ul>
873 <?php if ($GLOBALS['ippf_specific'] && !$GLOBALS['disable_calendar']) genTreeLink('RTop','cal',xl('Calendar')); ?>
874 <?php genTreeLink('RBot','nen',xl('New Visit')); ?>
875 <?php genTreeLink('RBot','enc',xl('Current')); ?>
876 <?php genTreeLink('RBot','ens',xl('List')); ?>
877 <?php if (!$GLOBALS['disable_chart_tracker']) genPopLink(xl('Chart Tracker'),'../../custom/chart_tracker.php'); ?>
878 </ul>
879 </li>
880 <li><span><?php xl('Visit Forms','e') ?></span>
881 <ul>
882 <?php
883 // Generate the items for visit forms, both traditional and LBF.
885 $lres = sqlStatement("SELECT * FROM list_options " .
886 "WHERE list_id = 'lbfnames' ORDER BY seq, title");
887 if (sqlNumRows($lres)) {
888 while ($lrow = sqlFetchArray($lres)) {
889 $option_id = $lrow['option_id']; // should start with LBF
890 $title = $lrow['title'];
891 genMiscLink('RBot','cod','2',xl_form_title($title),
892 "patient_file/encounter/load_form.php?formname=$option_id");
895 include_once("$srcdir/registry.inc");
896 $reg = getRegistered();
897 if (!empty($reg)) {
898 foreach ($reg as $entry) {
899 $option_id = $entry['directory'];
900 $title = trim($entry['nickname']);
901 if ($option_id == 'fee_sheet' ) continue;
902 if ($option_id == 'newpatient') continue;
903 if (empty($title)) $title = $entry['name'];
904 genMiscLink('RBot','cod','2',xl_form_title($title),
905 "patient_file/encounter/load_form.php?formname=" .
906 urlencode($option_id));
910 </ul>
911 </li>
912 </ul>
913 </li>
914 <li><span><?php xl('Fees','e') ?></span>
915 <ul>
916 <?php genMiscLink('RBot','cod','2',xl('Fee Sheet'),'patient_file/encounter/load_form.php?formname=fee_sheet'); ?>
917 <?php if ($GLOBALS['use_charges_panel']) genTreeLink('RBot','cod',xl('Charges')); ?>
918 <?php genMiscLink('RBot','bil','1',xl('Checkout'),'patient_file/pos_checkout.php?framed=1'); ?>
919 <?php if (! $GLOBALS['simplified_demographics']) genTreeLink('RTop','bil',xl('Billing')); ?>
920 </ul>
921 </li>
922 <?php // if ($GLOBALS['inhouse_pharmacy'] && acl_check('admin', 'drugs')) genMiscLink('RTop','adm','0',xl('Inventory'),'drugs/drug_inventory.php'); ?>
923 <?php if ($GLOBALS['inhouse_pharmacy'] && acl_check('admin', 'drugs')) { ?>
924 <li><span><?php xl('Inventory','e') ?></span>
925 <ul>
926 <?php genMiscLink('RTop','adm','0',xl('Management'),'drugs/drug_inventory.php'); ?>
927 <?php genPopLink(xl('Destroyed'),'destroyed_drugs_report.php'); ?>
928 </ul>
929 </li>
930 <?php } ?>
931 <li><span><?php xl('Procedures','e') ?></span>
932 <ul>
933 <?php genTreeLink('RTop','ort',xl('Configuration')); ?>
934 <?php genTreeLink('RTop','orp',xl('Pending Review')); ?>
935 <?php genTreeLink('RTop','orr',xl('Patient Results')); ?>
936 <?php genTreeLink('RTop','orb',xl('Batch Results')); ?>
937 </ul>
938 </li>
939 <?php if (!$disallowed['adm']) { ?>
940 <li><span><?php xl('Administration','e') ?></span>
941 <ul>
942 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Globals'),'super/edit_globals.php'); ?>
943 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Facilities'),'usergroup/facilities.php'); ?>
944 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Users'),'usergroup/usergroup_admin.php'); ?>
945 <?php
946 // Changed the target URL from practice settings -> Practice Settings - Pharmacy... Dec 09,09 .. Visolve ... This replaces empty frame with Pharmacy window
947 if (acl_check('admin', 'practice' )) genMiscLink('RTop','adm','0',xl('Practice'),'../controller.php?practice_settings&pharmacy&action=list'); ?>
948 <?php if (acl_check('admin', 'superbill')) genTreeLink('RTop','sup',xl('Services')); ?>
949 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Layouts'),'super/edit_layout.php'); ?>
950 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Lists'),'super/edit_list.php'); ?>
951 <?php if (acl_check('admin', 'acl' )) genMiscLink('RTop','adm','0',xl('ACL'),'usergroup/adminacl.php'); ?>
952 <?php if (acl_check('admin', 'super' )) genMiscLink('RTop','adm','0',xl('Backup'),'main/backup.php'); ?>
953 <?php if ( ($GLOBALS['include_de_identification']) && (acl_check('admin', 'super' )) ) genMiscLink('RTop','adm','0',xl('De Identification'),'de_identification_forms/de_identification_screen1.php'); ?>
954 <?php if ( ($GLOBALS['include_de_identification']) && (acl_check('admin', 'super' )) ) genMiscLink('RTop','adm','0',xl('Re Identification'),'de_identification_forms/re_identification_input_screen.php'); ?>
955 <?php if (acl_check('admin', 'super') && !empty($GLOBALS['code_types']['IPPF'])) genMiscLink('RTop','adm','0',xl('Export'),'main/ippf_export.php'); ?>
956 <li><span><?php xl('Other','e') ?></span>
957 <ul>
958 <?php if (acl_check('admin', 'language')) genMiscLink('RTop','adm','0',xl('Language'),'language/language.php'); ?>
959 <?php if (acl_check('admin', 'forms' )) genMiscLink('RTop','adm','0',xl('Forms'),'forms_admin/forms_admin.php'); ?>
960 <?php if (acl_check('admin', 'calendar') && !$GLOBALS['disable_calendar']) genMiscLink('RTop','adm','0',xl('Calendar'),'main/calendar/index.php?module=PostCalendar&type=admin&func=modifyconfig'); ?>
961 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Logs'),'logview/logview.php'); ?>
962 <?php if (acl_check('admin', 'database')) genMiscLink('RTop','adm','0',xl('Database'),'../phpmyadmin/index.php'); ?>
963 <?php if (acl_check('admin', 'users' )) genMiscLink('RTop','adm','0',xl('Certificates'),'usergroup/ssl_certificates_admin.php'); ?>
964 </ul>
965 </li>
966 </ul>
967 </li>
968 <?php } ?>
969 <li><span><?php xl('Reports','e') ?></span>
970 <ul>
971 <li><span><?php xl('Clients','e') ?></span>
972 <ul>
973 <?php genMiscLink('RTop','rep','0',xl('List'),'reports/patient_list.php'); ?>
974 <?php if (acl_check('patients', 'med') && !$GLOBALS['disable_prescriptions']) genMiscLink('RTop','rep','0',xl('Rx'),'reports/prescriptions_report.php'); ?>
975 <?php genMiscLink('RTop','rep','0',xl('Referrals'),'reports/referrals_report.php'); ?>
976 </ul>
977 </li>
978 <li class="open"><span><?php xl('Visits','e') ?></span>
979 <ul>
980 <?php if (!$GLOBALS['disable_calendar']) genMiscLink('RTop','rep','0',xl('Appointments'),'reports/appointments_report.php'); ?>
981 <?php genMiscLink('RTop','rep','0',xl('Encounters'),'reports/encounters_report.php'); ?>
982 <?php if (!$GLOBALS['disable_calendar']) genMiscLink('RTop','rep','0',xl('Appt-Enc'),'reports/appt_encounter_report.php'); ?>
983 <?php if (empty($GLOBALS['code_types']['IPPF'])) { ?>
984 <?php genMiscLink('RTop','rep','0',xl('Superbill'),'reports/custom_report_range.php'); ?>
985 <?php } ?>
986 <?php if (!$GLOBALS['disable_chart_tracker']) genMiscLink('RTop','rep','0',xl('Chart Activity'),'reports/chart_location_activity.php'); ?>
987 <?php if (!$GLOBALS['disable_chart_tracker']) genMiscLink('RTop','rep','0',xl('Charts Out'),'reports/charts_checked_out.php'); ?>
988 <?php genMiscLink('RTop','rep','0',xl('Services'), 'reports/services_by_category.php'); ?>
989 </ul>
990 </li>
991 <?php if (acl_check('acct', 'rep_a')) { ?>
992 <li><span><?php xl('Financial','e') ?></span>
993 <ul>
994 <?php genMiscLink('RTop','rep','0',xl('Sales'),'reports/sales_by_item.php'); ?>
995 <?php genMiscLink('RTop','rep','0',xl('Cash Rec'), 'billing/sl_receipts_report.php'); ?>
996 <?php genMiscLink('RTop','rep','0',xl('Front Rec'), 'reports/front_receipts_report.php'); ?>
997 <?php genMiscLink('RTop','rep','0',xl('Pmt Method'), 'reports/receipts_by_method_report.php'); ?>
998 <?php genMiscLink('RTop','rep','0',xl('Collections'), 'reports/collections_report.php'); ?>
999 </ul>
1000 </li>
1001 <?php } ?>
1002 <?php if ($GLOBALS['inhouse_pharmacy']) { ?>
1003 <li><span><?php xl('Inventory','e') ?></span>
1004 <ul>
1005 <?php genPopLink(xl('List'),'inventory_list.php'); ?>
1006 <?php genPopLink(xl('Activity'),'inventory_activity.php'); ?>
1007 </ul>
1008 </li>
1009 <?php } ?>
1010 <li><span><?php xl('Procedures','e') ?></span>
1011 <ul>
1012 <?php genPopLink(xl('Pending Res'),'../orders/pending_orders.php'); ?>
1013 <?php if (!empty($GLOBALS['code_types']['IPPF'])) genPopLink(xl('Pending F/U'),'../orders/pending_followup.php'); ?>
1014 <?php genPopLink(xl('Statistics'),'../orders/procedure_stats.php'); ?>
1015 </ul>
1016 </li>
1017 <?php if (! $GLOBALS['simplified_demographics']) { ?>
1018 <li><span><?php xl('Insurance','e') ?></span>
1019 <ul>
1020 <?php genMiscLink('RTop','rep','0',xl('Distribution'),'reports/insurance_allocation_report.php'); ?>
1021 <?php genMiscLink('RTop','rep','0',xl('Indigents'),'billing/indigent_patients_report.php'); ?>
1022 <?php genMiscLink('RTop','rep','0',xl('Unique SP'),'reports/unique_seen_patients_report.php'); ?>
1023 </ul>
1024 </li>
1025 <?php } ?>
1026 <?php if (!empty($GLOBALS['code_types']['IPPF'])) { ?>
1027 <li><span><?php xl('Statistics','e') ?></span>
1028 <ul>
1029 <?php genPopLink('IPPF Stats','ippf_statistics.php?t=i'); ?>
1030 <?php genPopLink('GCAC Stats','ippf_statistics.php?t=g'); ?>
1031 <?php genPopLink('MA Stats','ippf_statistics.php?t=m'); ?>
1032 <?php genPopLink('CYP','ippf_cyp_report.php'); ?>
1033 <?php genPopLink('Daily Record','ippf_daily.php'); ?>
1034 </ul>
1035 </li>
1036 <?php } // end ippf-specific ?>
1037 <li><span><?php xl('Blank Forms','e') ?></span>
1038 <ul>
1039 <?php genPopLink(xl('Demographics'),'../patient_file/summary/demographics_print.php'); ?>
1040 <?php genPopLink(xl('Fee Sheet'),'../patient_file/printed_fee_sheet.php'); ?>
1041 <?php genPopLink(xl('Referral'),'../patient_file/transaction/print_referral.php'); ?>
1042 <?php
1043 $lres = sqlStatement("SELECT * FROM list_options " .
1044 "WHERE list_id = 'lbfnames' ORDER BY seq, title");
1045 while ($lrow = sqlFetchArray($lres)) {
1046 $option_id = $lrow['option_id']; // should start with LBF
1047 $title = $lrow['title'];
1048 genPopLink($title, "../forms/LBF/printable.php?formname=$option_id");
1051 </ul>
1052 </li>
1053 <?php // genTreeLink('RTop','rep','Other'); ?>
1054 </ul>
1055 </li>
1056 <li><span><?php xl('Miscellaneous','e') ?></span>
1057 <ul>
1058 <?php genTreeLink('RBot','aun',xl('Authorizations')); ?>
1059 <?php genTreeLink('RTop','fax',xl('Fax/Scan')); ?>
1060 <?php genTreeLink('RTop','adb',xl('Addr Book')); ?>
1061 <?php genTreeLink('RTop','ort',xl('Order Catalog')); ?>
1062 <?php if (!$GLOBALS['disable_chart_tracker']) genTreeLink('RTop','cht',xl('Chart Tracker')); ?>
1063 <?php genTreeLink('RTop','ono',xl('Ofc Notes')); ?>
1064 <?php genMiscLink('RTop','adm','0',xl('BatchCom'),'batchcom/batchcom.php'); ?>
1065 <?php genTreeLink('RTop','pwd',xl('Password')); ?>
1066 </ul>
1067 </li>
1068 </ul>
1070 <?php } // end not athletic team ?>
1072 <?php } else { // end ($GLOBALS['concurrent_layout'] == 2) ?>
1074 <table cellpadding='0' cellspacing='0' border='0'>
1075 <tr>
1076 <td colspan='3'>
1077 <table cellpadding='0' cellspacing='0' border='0' width='100%'>
1078 <tr>
1079 <td class='smalltext' nowrap>
1080 <input type='checkbox' name='cb_top' onclick='toggleFrame(1)' checked /><b><?php xl('Top','e') ?></b>
1081 </td>
1082 <td class='smalltext' align='right' nowrap>
1083 <b><?php xl('Bot','e') ?></b><input type='checkbox' name='cb_bot' onclick='toggleFrame(2)' checked />
1084 </td>
1085 </tr>
1086 </table>
1087 </td>
1088 </tr>
1089 <?php
1090 // Builds the table of radio buttons and their labels. Radio button values
1091 // are comprised of the 3-character document id and the 1-digit usage type,
1092 // so that JavaScript can easily access this information.
1093 $default_top_rbid = $GLOBALS['athletic_team'] ? 'ros' : 'cal';
1094 foreach ($primary_docs as $key => $varr) {
1095 if (!empty($disallowed[$key])) continue;
1096 $label = $varr[0];
1097 $usage = $varr[1];
1098 $url = $varr[2];
1099 echo " <tr>\n";
1100 echo " <td class='smalltext'><input type='radio' name='rb_top' value='$key$usage' " .
1101 "onclick=\"loadFrame('$key$usage','RTop','$url')\"";
1102 if ($key == $default_top_rbid) echo " checked";
1103 echo " /></td>\n";
1104 echo " <td class='smalltext' id='lbl_$key'>$label</td>\n";
1105 echo " <td class='smalltext'><input type='radio' name='rb_bot' value='$key$usage' " .
1106 "onclick=\"loadFrame('$key$usage','RBot','$url')\"";
1107 if ($key == 'aun') echo " checked";
1108 echo " /></td>\n";
1109 echo " </tr>\n";
1112 </table>
1114 <?php } ?>
1116 <br /><hr />
1118 <?php
1119 // To use RelayHealth, see comments and parameters in includes/config.php.
1120 if (!empty($GLOBALS['ssi']['rh'])) {
1121 include_once("../../library/ssi.inc");
1122 echo getRelayHealthLink() ."<br /><hr />\n";
1126 <div id='current_patient' style = 'display:none'>
1127 <b><?php xl('None','e'); ?></b>
1128 </div>
1130 <div id='current_encounter' style = 'display:none'>
1131 <b><?php xl('None','e'); ?></b>
1132 </div>
1134 <?php if (!$GLOBALS['athletic_team']) genPopupsList(); ?>
1136 <hr />
1138 <table cellpadding='0' cellspacing='0' border='0'>
1139 <tr>
1140 <td class='smalltext'><?php xl('Find','e') ?>:&nbsp;</td>
1141 <td class='smalltext' colspan='2'>
1142 <input type="entry" size="7" name="patient" class='inputtext' style='width:65px;' />
1143 </td>
1144 </tr>
1145 <tr>
1146 <td class='smalltext'><?php xl('by','e') ?>:</td>
1147 <td class='smalltext'>
1148 <a href="javascript:findPatient('Last');" class="navitem"><?php xl('Name','e'); ?></a>
1149 </td>
1150 <td class='smalltext' align='right'>
1151 <a href="javascript:findPatient('ID');" class="navitem"><?php xl('ID','e'); ?></a>
1152 </td>
1153 </tr>
1154 <tr>
1155 <td class='smalltext'>&nbsp;</td>
1156 <td class='smalltext'>
1157 <a href="javascript:findPatient('SSN');" class="navitem"><?php xl('SSN','e'); ?></a>
1158 </td>
1159 <td class='smalltext' align='right'>
1160 <a href="javascript:findPatient('DOB');" class="navitem"><?php xl('DOB','e'); ?></a>
1161 </td>
1162 </tr>
1164 <tr>
1165 <td class='smalltext'>&nbsp;</td>
1166 <td class='smalltext'>
1167 <a href="javascript:findPatient('Any');" class="navitem"><?php xl('Any', 'e'); ?></a>
1168 </td>
1169 <td class='smalltext' align='right'>
1170 <a href="javascript:initFilter();" class="navitem"><?php xl('Filter', 'e'); ?></a>
1171 </td>
1172 </tr>
1174 </table>
1176 <hr />
1177 <?php if (!empty($GLOBALS['online_support_link'])) { ?>
1178 <a href='<?php echo $GLOBALS["online_support_link"]; ?>' target="_blank" id="support_link" class='css_button' onClick="top.restoreSession()"><span><?php xl('Online Support','e'); ?></span></a>
1179 <?php } ?>
1181 <input type='hidden' name='findBy' value='Last' />
1182 <input type="hidden" name="searchFields" id="searchFields"/>
1184 </form>
1186 <script language='JavaScript'>
1187 syncRadios();
1188 </script>
1190 </body>
1191 </html>