translation patches from Dr. Bosman and his crew
[openemr.git] / interface / forms / dictation / view.php
blobe29853bdf63f64b5e5291295927b53f1c555c66b
1 <!-- Forms generated from formsWiz -->
2 <?php
3 include_once("../../globals.php");
4 $returnurl = $GLOBALS['concurrent_layout'] ? 'encounter_top.php' : 'patient_encounter.php';
5 ?>
6 <html><head>
7 <link rel=stylesheet href="<?echo $css_header;?>" type="text/css">
8 </head>
9 <body <?echo $top_bg_line;?> topmargin=0 rightmargin=0 leftmargin=2 bottommargin=0 marginwidth=2 marginheight=0>
10 <?php
11 include_once("$srcdir/api.inc");
12 $obj = formFetch("form_dictation", $_GET["id"]);
14 <form method=post action="<?echo $rootdir?>/forms/dictation/save.php?mode=update&id=<?echo $_GET["id"];?>" name="my_form">
15 <span class="title"><?php xl('Speech Dictation','e'); ?></span><Br><br>
16 <span class=text><?php xl('Dictation: ','e'); ?></span><br><textarea cols=80 rows=24 wrap=virtual name="dictation" ><?echo stripslashes($obj{"dictation"});?></textarea><br>
17 <span class=text><?php xl('Additional Notes: ','e'); ?></span><br><textarea cols=80 rows=8 wrap=virtual name="additional_notes" ><?echo stripslashes($obj{"additional_notes"});?></textarea><br>
18 <br>
19 <a href="javascript:document.my_form.submit();" class="link_submit">[<?php xl('Save','e'); ?>]</a>
20 <br>
21 <a href="<?echo "$rootdir/patient_file/encounter/$returnurl";?>" class="link">[<?php xl('Don\'t Save Changes','e'); ?>]</a>
22 </form>
23 <?php
24 formFooter();