supporting data peculiar to ippf issue types
[openemr.git] / interface / patient_file / encounter / encounter_top.php
blobeaed8a7af8088f3eca23abee4a22e1aaab28d83c
1 <?php
2 // Cloned from patient_encounter.php.
4 include_once("../../globals.php");
5 include_once("$srcdir/pid.inc");
6 include_once("$srcdir/encounter.inc");
8 if (isset($_GET["set_encounter"])) {
9 // The billing page might also be setting a new pid.
10 $set_pid = $_GET["set_pid"] ? $_GET["set_pid"] : $_GET["pid"];
11 if ($set_pid && $set_pid != $_SESSION["pid"]) {
12 setpid($set_pid);
14 setencounter($_GET["set_encounter"]);
17 <html>
18 <head>
19 <? html_header_show();?>
20 </head>
21 <frameset cols="*,200">
22 <frame src="forms.php" name="Forms" scrolling="auto">
23 <frame src="new_form.php" name="New Form" scrolling="auto">
24 </frameset>
25 </html>