added date to oldEvt call
[openemr.git] / interface / main / main_screen.php
blob8916e393757a915fe0ee20df0f5b6b2af0c217ac
1 <?php
2 include_once("../globals.php");
3 $_SESSION["encounter"] = "";
5 if ($GLOBALS['athletic_team']) {
6 $frame1url = "../reports/players_report.php?embed=1";
7 } else {
8 if (isset($_GET['mode']) && $_GET['mode'] == "loadcalendar") {
9 $frame1url = "calendar/index.php?pid=" . $_GET['pid'];
10 if (isset($_GET['date'])) $frame1url .= "&date=" . $_GET['date'];
11 } else {
12 if ($GLOBALS['concurrent_layout'])
13 // new layout
14 $frame1url = "main_info.php";
15 else
16 // old layout
17 $frame1url = "main.php?mode=" . $_GET['mode'];
21 <html>
22 <head>
23 <title>
24 <?php echo $openemr_name ?>
25 </title>
26 <script type="text/javascript" src="../../library/topdialog.js"></script>
28 <script language='JavaScript'>
29 <?php require($GLOBALS['srcdir'] . "/restoreSession.php"); ?>
30 </script>
32 <?php if ($GLOBALS['concurrent_layout']) { // start new layout ?>
34 </head>
35 <!-- border (mozilla) and framespacing (ie) are the same thing. -->
36 <!-- frameborder specifies a 3d look, not whether there are borders. -->
37 <frameset rows='<?php echo $GLOBALS['titleBarHeight'] ?>,*' frameborder='1' border='1' framespacing='1' onunload='imclosing()'>
38 <frame src='main_title.php' name='Title' scrolling='no' frameborder='1' noresize />
39 <frameset cols='130,*' id='fsbody' frameborder='1' border='4' framespacing='4'>
40 <frameset rows='*,0' frameborder='0' border='0' framespacing='0'>
41 <frame src='left_nav.php' name='left_nav' />
42 <frame src='daemon_frame.php' name='Daemon' scrolling='no' frameborder='0'
43 border='0' framespacing='0' />
44 </frameset>
45 <frameset rows='60%,*' id='fsright' bordercolor='#999999' frameborder='1'>
46 <frame src='<?php echo $frame1url ?>' name='RTop' scrolling='auto' />
47 <frame src='authorizations/authorizations.php' name='RBot' scrolling='auto' />
48 </frameset>
49 </frameset>
50 </frameset>
52 <?php } else { // start old layout ?>
54 </head>
55 <frameset rows="<?php echo "$GLOBALS[navBarHeight],$GLOBALS[titleBarHeight]" ?>,*"
56 cols="*" frameborder="no" border="0" framespacing="0"
57 onunload="imclosing()">
58 <frame src="main_navigation.php" name="Navigation" scrolling="no" noresize frameborder="no">
59 <frame src="main_title.php" name="Title" scrolling="no" noresize frameborder="no">
60 <frame src='<?php echo $frame1url ?>' name='Main' scrolling='auto' noresize frameborder='no'>
61 </frameset>
62 <noframes><body bgcolor="#FFFFFF">
63 Frame support required
64 </body></noframes>
66 <?php } // end old layout ?>
68 </html>