missing closing tag fixed
[openemr.git] / interface / patient_file / patient_file.php
blobc78892797c9a6ad512f1a838cbb1f6bb4e00f3a2
1 <?
2 include_once("../globals.php");
3 include_once("$srcdir/pid.inc");
5 setpid($_GET["set_pid"]);
6 ?>
8 <HTML>
9 <HEAD>
10 <TITLE>
11 OpenEMR
12 </TITLE>
13 </HEAD>
14 <frameset rows="<?echo "$GLOBALS[navBarHeight],$GLOBALS[titleBarHeight]" ?>,*" cols="*" frameborder="0" border="0" framespacing="0">
16 if (isset($_GET["calenc"])) {
18 <frame src="navigation.php" name="Navigation" scrolling="NO" noresize frameborder="0">
19 <frame src="encounter/encounter_title.php" name="Title" scrolling="no" noresize frameborder="0">
20 <frame src="encounter/patient_encounter.php?mode=new&calenc=<?echo $_GET["calenc"];?>" name="Main" scrolling="AUTO" noresize frameborder="0">
22 } elseif ($_GET['go'] == "encounter"){
24 <frame src="navigation.php?pid=<?=$_GET['pid']?>&set_pid=<?=$_GET['pid']?>" name="Navigation" scrolling="NO" noresize frameborder="0">
25 <frame src="encounter/encounter_title.php?pid=<?=$_GET['pid']?>&set_pid=<?=$_GET['pid']?>" name="Title" scrolling="no" noresize frameborder="0">
26 <frame src="encounter/patient_encounter.php?mode=new&pid=<?=$_GET['pid']?>&set_pid=<?=$_GET['pid']?>" name="Main" scrolling="AUTO" noresize frameborder="0">
28 } else {
30 <frame src="navigation.php" name="Navigation" scrolling="NO" noresize frameborder="0">
31 <frame src="summary/summary_title.php" name="Title" scrolling="no" noresize frameborder="0">
32 <frame src="summary/patient_summary.php" name="Main" scrolling="AUTO" noresize frameborder="0">
36 </frameset>
38 <noframes><body bgcolor="#FFFFFF">
40 </body></noframes>
42 </HTML>