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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
<?php /************************************************************************** * * * 4images - A Web Based Image Gallery Management System * * ---------------------------------------------------------------- * * * * File: progress.php * * Copyright: (C) 2002 Jan Sorgalla * * Email: jan@4homepages.de * * Web: http://www.4homepages.de * * Scriptversion: 1.7.1 * * * * Never released without support from: Nicky (http://www.nicky.net) * * * ************************************************************************** * * * Dieses Script ist KEINE Freeware. Bitte lesen Sie die Lizenz- * * bedingungen (Lizenz.txt) für weitere Informationen. * * --------------------------------------------------------------- * * This script is NOT freeware! Please read the Copyright Notice * * (Licence.txt) for further information. * * * *************************************************************************/
define('IN_CP', 1); define('ROOT_PATH', './../'); require('admin_global.php');
?> <html> <head> <title><?php echo $lang['upload_progress']; ?><</title> <link rel="stylesheet" href="./cpstyle.css"> <script language="javascript1.2"> <!-- var start_pad = 2; var end_pad = 2; var sel = 0; var mod = 3; var timer;
var image_on = new Image(); image_on.src = 'images/arrow.gif'; var image_off = new Image(); image_off.src = 'images/spacer.gif';
function animate() { for (var i = start_pad; i < document.images.length - end_pad; i++) { if (i % mod == sel) { document.images[i].src = image_on.src; } else { document.images[i].src = image_off.src; } } sel++; if (sel == mod) { sel = 0; } start_animation(); }
function start_animation() { timer=window.setTimeout("animate();",250); }
function stop_animation() { window.clearTimeout(timer); }
// --> </script> </head>
<body onload="start_animation()"> <center> <span class="title"><?php echo $lang['upload_progress']; ?></span> <p> <?php echo $lang['upload_progress_desc']; ?> <p> <table border="0" cellpadding="0" cellspacing="0"> <tr> <td> <img src="images/folder_big.gif"> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/spacer.gif" width="8" height="11" /> </td> <td> <img src="images/folder_big.gif" /> </td> </tr> </table> </center> </body>
|