- modules/fotolab updated imagej to current version & some cod fixes to make it work
[care2x.git] / Care2007 / modules / registration_admission / gui_bridge / default / gui_person_reg_showdetail.php
blob13a0b3c548b80fc5b471a601be91e48b1286185d
1 <?php
3 require('./gui_bridge/default/gui_std_tags.php');
5 echo StdHeader();
6 echo setCharSet();
7 ?>
8 <TITLE><?php echo $LDPatientRegister ?></TITLE>
10 <?php
11 require($root_path.'include/inc_js_gethelp.php');
12 require($root_path.'include/inc_css_a_hilitebu.php');
15 </HEAD>
17 <BODY bgcolor="<?php echo $cfg['bot_bgcolor'];?>" topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 onLoad="if (window.focus) window.focus();"
18 <?php if (!$cfg['dhtml']){ echo 'link='.$cfg['body_txtcolor'].' alink='.$cfg['body_alink'].' vlink='.$cfg['body_txtcolor']; } ?>>
20 <table width=100% border=0 cellspacing="0" cellpadding=0 >
21 <tr>
22 <td bgcolor="<?php echo $cfg['top_bgcolor']; ?>">
23 <FONT COLOR="<?php echo $cfg['top_txtcolor']; ?>" SIZE=+2 FACE="Arial"><STRONG> &nbsp;<?php echo $LDPatientRegister ?></STRONG> <font size=+2>(<?php echo ($pid) ?>)</font></FONT>
24 </td>
26 <td bgcolor="<?php echo $cfg['top_bgcolor']; ?>" align="right">
27 <a href="javascript:gethelp('person_details.php')"><img <?php echo createLDImgSrc($root_path,'hilfe-r.gif','0') ?> <?php if($cfg['dhtml'])echo'style=filter:alpha(opacity=70) onMouseover=hilite(this,1) onMouseOut=hilite(this,0)>';?></a><a
28 href="javascript:window.close()"><img <?php echo createLDImgSrc($root_path,'close2.gif','0') ?> alt="<?php echo $LDCloseWin ?>" <?php if($cfg['dhtml'])echo'style=filter:alpha(opacity=70) onMouseover=hilite(this,1) onMouseOut=hilite(this,0)>';?></a>
29 </td>
30 </tr>
32 <tr>
33 <td colspan=3 bgcolor="<?php echo $cfg['body_bgcolor']; ?>">
34 <ul>
36 <?php
38 require_once($root_path.'include/care_api_classes/class_gui_person_show.php');
39 $person = & new GuiPersonShow;
40 $person->setPID($pid);
41 $person->display();
45 </ul>
47 </FONT>
48 <p>
49 </td>
50 </tr>
51 </table>
53 <p>
54 <ul>
56 <a href="javascript:window.close()"><img <?php echo createLDImgSrc($root_path,'close2.gif','0') ?> alt="<?php echo $LDCloseWin ?>"></a>
57 </ul>
58 <p>
59 <?php
60 require($root_path.'include/inc_load_copyrite.php');
62 </FONT>
63 <?php
64 StdFooter();