1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
//----------------------------------// // Copyright by Matthias Speer // //----------------------------------//
include('./config.inc.php');
include('./auth.php');
$action=isset($_GET['action'])?$_GET['action']:0; ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>Footer</TITLE> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <LINK href="style/global.css" rel="stylesheet" type="text/css"> <SCRIPT language="JavaScript" src="./script/frames.js" type="text/JavaScript"></SCRIPT> </HEAD>
<BODY class="body_footer"> <TABLE width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" class="text4b"> <TR> <TD align="center" valign="middle"> <A href="./index.php?action=6" class=text<?php echo ($action==6)?'6':'4'; ?>b target="_top"><?php echo GetLocText('misc_doc'); ?></A> | <A href="./index.php?action=7" class=text<?php echo ($action==7)?'6':'4'; ?>b target="_top"><?php echo GetLocText('misc_nv'); ?></A> </TD> </TR> </TABLE> </BODY> </HTML>
|