home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / themes / Intermesh / header.php < prev    next >
PHP Script  |  2004-03-08  |  1KB  |  37 lines

  1. <?php
  2. require('../../Group-Office.php');
  3. $GO_SECURITY->authenticate();
  4. ?>
  5. <html>
  6. <head>
  7. <script language="javascript" type="text/javascript" src="<?php echo $GO_CONFIG->host; ?>javascript/common.js"></script>
  8. <title><?php echo $GO_CONFIG->title; ?>
  9. </title>
  10. <link href="<?php echo $GO_THEME->theme_url.'style.css'; ?>" rel="stylesheet" type="text/css" />
  11. </head>
  12. <body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
  13. <table border="0" cellpadding="0" cellspacing="0" width="100%" height="23">
  14. <tr>
  15.     <td class="HeaderBar" align="right">
  16.  
  17.             <a class="HeaderBar" href="<?php echo $GO_CONFIG->host; ?>configuration/" target="main">
  18.             <img src="<?php echo $GO_THEME->images['configuration']; ?>" width="16" height="16" border="0" align="absmiddle" />
  19.             <?php echo $menu_configuration; ?>
  20.             </a>
  21.  
  22.             <a class="HeaderBar" href="javascript:popup('<?php echo $GO_CONFIG->host; ?>doc/index.php', 500, 500);">
  23.             <img src="<?php echo $GO_THEME->images['help']; ?>" width="16" height="16" border="0" align="absmiddle" />
  24.             <?php echo $menu_help; ?>
  25.             </a>
  26.  
  27.             <a class="HeaderBar" href="<?php echo $GO_CONFIG->host; ?>index.php?task=logout" target="_parent">
  28.             <img src="<?php echo $GO_THEME->images['logout']; ?>" width="16" height="16" border="0" align="absmiddle" />
  29.             <?php echo $menu_logout; ?>
  30.             </a>
  31.  
  32.     </td>
  33. </tr>
  34. </table>
  35. </body>
  36. </html>
  37.