1 |
|
---|
2 | <?
|
---|
3 | function Button($Text, $URL)
|
---|
4 | {
|
---|
5 | $RandId = rand(10000, 99999);
|
---|
6 | $URL = 'http://wow.zdechov.net'.$URL;
|
---|
7 | echo('<a href="'.$URL.'" onMouseOver="document[\'image\'+'.$RandId.'].src = \'button.php?text='.$Text.'&b=1\'"
|
---|
8 | onMouseOut="document[\'image\'+'.$RandId.'].src = \'button.php?text='.$Text.'\'">');
|
---|
9 | echo('<img border="0" src="button.php?text='.$Text.'" alt="'.$Text.'" name="image'.$RandId.'"><br>');
|
---|
10 | echo('</a>');
|
---|
11 | }
|
---|
12 |
|
---|
13 | Button('Home', '/');
|
---|
14 | Button('Server', '/server.php');
|
---|
15 | Button('Dotace', '/donate.php');
|
---|
16 | Button('Stahování', '/download_soubory.php');
|
---|
17 | Button('Jak zacít', '/jak_zacit.php');
|
---|
18 | Button('Odkazy', '/link.php');
|
---|
19 | Button('Mapa', '/mapa.php');
|
---|
20 | Button('Guildy', '/guildy.php');
|
---|
21 | Button('Fórum', '/forum/');
|
---|
22 | Button('Registrace', '/registrace.php');
|
---|
23 | Button('Online hráci', '/online_player.php');
|
---|
24 | Button('Honor', '/honor.php');
|
---|
25 | Button('Rasy', '/Death%20dealers%20hratelne%20rasy.php');
|
---|
26 | Button('Povolání', '/Death%20dealers%20povolani.php');
|
---|
27 | Button('Profese', '/Death%20dealers%20profese.php');
|
---|
28 |
|
---|
29 | ?>
|
---|
30 |
|
---|