Subversion Repositories ALCASAR

Rev

Rev 1874 | Rev 1899 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 1874 Rev 1894
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
<HTML><!-- written by Rexy -->
2
<HTML><!-- written by Rexy -->
3
<HEAD>
3
<HEAD>
4
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
4
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
<?
5
<?
6
$bl_dir="/etc/dansguardian/lists/blacklists/";
6
$bl_dir="/etc/dansguardian/lists/blacklists/";
7
$bl_iptables_dir="/usr/local/share/iptables-bl/";
7
$bl_iptables_dir="/usr/local/share/iptables-bl/";
8
$wl_iptables_dir="/usr/local/share/iptables-wl/";
8
$wl_iptables_dir="/usr/local/share/iptables-wl/";
9
$bl_dnsmasq_dir="/usr/local/share/dnsmasq-bl/";
9
$bl_dnsmasq_dir="/usr/local/share/dnsmasq-bl/";
10
$wl_dnsmasq_dir="/usr/local/share/dnsmasq-wl/";
10
$wl_dnsmasq_dir="/usr/local/share/dnsmasq-wl/";
11
if(isset($_GET['ossi'])) $ossi = $_GET['ossi'];
11
if(isset($_GET['ossi'])) $ossi = $_GET['ossi'];
12
# Choice of language
12
# Choice of language
13
$Language = 'en';
13
$Language = 'en';
14
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE']))
14
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE']))
15
{
15
{
16
	 $Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
16
	 $Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
17
	 $Language = strtolower(substr(chop($Langue[0]),0,2));
17
	 $Language = strtolower(substr(chop($Langue[0]),0,2));
18
}
18
}
19
if($Language == 'fr')
19
if($Language == 'fr')
20
{
20
{
21
	$l_title = "Catégories de la liste noire";
21
	$l_title = "Catégories de la liste noire";
22
	$l_error_open_file="Erreur d'ouverture du fichier";
22
	$l_error_open_file="Erreur d'ouverture du fichier";
23
	$l_close="Fermer";
23
	$l_close="Fermer";
24
	$l_description_cat="Cette catégorie n'est pas décrite";
24
	$l_description_cat="Cette catégorie n'est pas décrite";
25
	$l_name_cat ="Cette catégorie n'a pas de nom";
25
	$l_name_cat ="Cette catégorie n'a pas de nom";
26
	$l_nb_domains="Nombre de noms de domaine filtrés :";
26
	$l_nb_domains="Nombre de noms de domaine filtrés :";
27
	$l_nb_urls="Nombre d'URL filtrés :";
27
	$l_nb_urls="Nombre d'URL filtrés :";
28
	$l_nb_ip="Nombre d'IP filtrées :";
28
	$l_nb_ip="Nombre d'IP filtrées :";
29
	$l_example="Exemple(s) : ";
29
	$l_example="Exemple(s) : ";
30
	$l_error_cat = "Erreur de categorie";
30
	$l_error_cat = "Erreur de categorie";
31
	$l_error_list = "Erreur de listing";
31
	$l_error_list = "Erreur de listing";
32
}
32
}
33
else
33
else
34
{
34
{
35
	$l_title = "Blacklist categories";
35
	$l_title = "Blacklist categories";
36
	$l_error_open_file="Error opening the file";
36
	$l_error_open_file="Error opening the file";
37
	$l_close="Close";
37
	$l_close="Close";
38
	$l_description_cat="This category isn't describe";
38
	$l_description_cat="This category isn't describe";
39
	$l_name_cat ="This category has not name";
39
	$l_name_cat ="This category has not name";
40
	$l_nb_domains="Number of filtered domain names :";
40
	$l_nb_domains="Number of filtered domain names :";
41
	$l_nb_urls="Number of filtered URL :";
41
	$l_nb_urls="Number of filtered URL :";
42
	$l_nb_ip="Number of filtered IP :";
42
	$l_nb_ip="Number of filtered IP :";
43
	$l_example="Example(s) : ";
43
	$l_example="Example(s) : ";
44
	$l_error_cat = "Error category";
44
	$l_error_cat = "Error category";
45
	$l_error_list = "Error listing";
45
	$l_error_list = "Error listing";
46
 
46
 
47
}
47
}
48
if(isset($_GET['cat']))
48
if(isset($_GET['cat']))
49
{
49
{
50
	$categorie = $_GET['cat'];
50
	$categorie = $_GET['cat'];
51
} 
51
} 
52
else
52
else
53
{
53
{
54
	$categorie = $l_error_cat;
54
	$categorie = $l_error_cat;
55
}
55
}
56
if(isset($_GET['liste']))
56
if(isset($_GET['liste']))
57
{
57
{
58
	$liste = $_GET['liste'];
58
	$liste = $_GET['liste'];
59
}
59
}
60
else
60
else
61
{
61
{
62
	$liste = $l_error_list;
62
	$liste = $l_error_list;
63
}
63
}
64
if($liste == "bl")
64
if($liste == "bl")
65
{
65
{
66
	if(isset($ossi))
66
	if(isset($ossi))
67
	{
67
	{
68
	$bl_categorie_domain_file = "/usr/local/share/dnsmasq-bl-enabled/".$categorie;
68
	$bl_categorie_domain_file = "/usr/local/share/dnsmasq-bl-enabled/".$categorie;
69
	$bl_categorie_ip_file = "/usr/local/share/iptables-bl-enabled/".$categorie;
69
	$bl_categorie_ip_file = "/usr/local/share/iptables-bl-enabled/".$categorie;
70
	if(isset($_GET['nb_domains']) && isset($_GET['nb_urls']) && isset($_GET['nb_ip']))
70
	if(isset($_GET['nb_domains']) && isset($_GET['nb_urls']) && isset($_GET['nb_ip']))
71
	{
71
	{
72
		$nb_domains = $_GET['nb_domains'];
72
		$nb_domains = $_GET['nb_domains'];
73
		$nb_ip = $_GET['nb_ip'];
73
		$nb_ip = $_GET['nb_ip'];
74
	}
74
	}
75
	else
75
	else
76
	{
76
	{
77
		if (file_exists($bl_categorie_domain_file))
77
		if (file_exists($bl_categorie_domain_file))
78
			$nb_domains = exec("wc -l $bl_categorie_domain_file | cut -d ' ' -f1");
78
			$nb_domains = exec("wc -l $bl_categorie_domain_file | cut -d ' ' -f1");
79
		else
79
		else
80
			$nb_domains = $l_error_open_file." ".$bl_categorie_domain_file;
80
			$nb_domains = $l_error_open_file." ".$bl_categorie_domain_file;
81
		if(file_exists($bl_categorie_ip_file))
81
		if(file_exists($bl_categorie_ip_file))
82
			$nb_ip = exec("wc -l $bl_categorie_ip_file | cut -d ' ' -f1");
82
			$nb_ip = exec("wc -l $bl_categorie_ip_file | cut -d ' ' -f1");
83
		else
83
		else
84
			$nb_ip = $l_error_open_file." ".$bl_categorie_ip_file;
84
			$nb_ip = $l_error_open_file." ".$bl_categorie_ip_file;
85
	}
85
	}
86
	}
86
	}
87
	else
87
	else
88
	{
88
	{
89
	
89
	
90
	
90
	
91
	$bl_categorie_domain_file = $bl_dnsmasq_dir.$categorie.".conf";
91
	$bl_categorie_domain_file = $bl_dnsmasq_dir.$categorie.".conf";
92
	$bl_categorie_url_file = $bl_dir.$categorie."/urls";
92
	$bl_categorie_url_file = $bl_dir.$categorie."/urls";
93
	$bl_categorie_ip_file = $bl_iptables_dir.$categorie;
93
	$bl_categorie_ip_file = $bl_iptables_dir.$categorie;
94
	if(isset($_GET['nb_domains']) && isset($_GET['nb_urls']) && isset($_GET['nb_ip']))
94
	if(isset($_GET['nb_domains']) && isset($_GET['nb_urls']) && isset($_GET['nb_ip']))
95
	{
95
	{
96
		$nb_domains = $_GET['nb_domains'];
96
		$nb_domains = $_GET['nb_domains'];
97
		$nb_urls = $_GET['nb_urls'];
97
		$nb_urls = $_GET['nb_urls'];
98
		$nb_ip = $_GET['nb_ip'];
98
		$nb_ip = $_GET['nb_ip'];
99
	}
99
	}
100
	else
100
	else
101
	{
101
	{
102
		if (file_exists($bl_categorie_domain_file))
102
		if (file_exists($bl_categorie_domain_file))
103
			$nb_domains = exec("wc -l $bl_categorie_domain_file | cut -d ' ' -f1");
103
			$nb_domains = exec("wc -l $bl_categorie_domain_file | cut -d ' ' -f1");
104
		else
104
		else
105
			$nb_domains = $l_error_open_file." ".$bl_categorie_domain_file;
105
			$nb_domains = $l_error_open_file." ".$bl_categorie_domain_file;
106
		if (file_exists($bl_categorie_url_file))
106
		if (file_exists($bl_categorie_url_file))
107
			$nb_urls = exec ("wc -l $bl_categorie_url_file | cut -d ' ' -f1");
107
			$nb_urls = exec ("wc -l $bl_categorie_url_file | cut -d ' ' -f1");
108
		else
108
		else
109
			$nb_urls = $l_error_open_file." ".$bl_categorie_url_file;
109
			$nb_urls = $l_error_open_file." ".$bl_categorie_url_file;
110
		if(file_exists($bl_categorie_ip_file))
110
		if(file_exists($bl_categorie_ip_file))
111
			$nb_ip = exec("wc -l $bl_categorie_ip_file | cut -d ' ' -f1");
111
			$nb_ip = exec("wc -l $bl_categorie_ip_file | cut -d ' ' -f1");
112
		else
112
		else
113
			$nb_ip = $l_error_open_file." ".$bl_categorie_ip_file;
113
			$nb_ip = $l_error_open_file." ".$bl_categorie_ip_file;
114
	}
114
	}
115
	}
115
	}
116
}
116
}
117
else
117
else
118
{
118
{
119
	
119
	
120
	if(isset($ossi))
120
	if(isset($ossi))
121
	{
121
	{
122
	$wl_categorie_domain_file = "/usr/local/share/dnsmasq-wl-enabled/".$categorie;
122
	$wl_categorie_domain_file = "/usr/local/share/dnsmasq-wl-enabled/".$categorie;
123
	$wl_categorie_ip_file = "/usr/local/share/iptables-wl-enabled/".$categorie;
123
	$wl_categorie_ip_file = "/usr/local/share/iptables-wl-enabled/".$categorie;
124
	if(isset($_GET['nb_domains']) && isset($_GET['nb_urls']) && isset($_GET['nb_ip']))
124
	if(isset($_GET['nb_domains']) && isset($_GET['nb_urls']) && isset($_GET['nb_ip']))
125
	{
125
	{
126
		$nb_domains = $_GET['nb_domains'];
126
		$nb_domains = $_GET['nb_domains'];
127
		$nb_ip = $_GET['nb_ip'];
127
		$nb_ip = $_GET['nb_ip'];
128
	}
128
	}
129
	else
129
	else
130
	{
130
	{
131
		if (file_exists($wl_categorie_domain_file))
131
		if (file_exists($wl_categorie_domain_file))
132
			$nb_domains = exec("wc -l $wl_categorie_domain_file | cut -d ' ' -f1");
132
			$nb_domains = exec("wc -l $wl_categorie_domain_file | cut -d ' ' -f1");
133
		else
133
		else
134
			$nb_domains = $l_error_open_file." ".$wl_categorie_domain_file;
134
			$nb_domains = $l_error_open_file." ".$wl_categorie_domain_file;
135
		if(file_exists($wl_categorie_ip_file))
135
		if(file_exists($wl_categorie_ip_file))
136
			$nb_ip = exec("wc -l $wl_categorie_ip_file | cut -d ' ' -f1");
136
			$nb_ip = exec("wc -l $wl_categorie_ip_file | cut -d ' ' -f1");
137
		else
137
		else
138
			$nb_ip = $l_error_open_file." ".$wl_categorie_ip_file;
138
			$nb_ip = $l_error_open_file." ".$wl_categorie_ip_file;
139
	}
139
	}
140
	}
140
	}
141
	else
141
	else
142
	{	
142
	{	
143
	$wl_categorie_domain_file = $wl_dnsmasq_dir.$categorie.".conf";
143
	$wl_categorie_domain_file = $wl_dnsmasq_dir.$categorie.".conf";
144
	$wl_categorie_ip_file = $wl_iptables_dir.$categorie;
144
	$wl_categorie_ip_file = $wl_iptables_dir.$categorie;
145
	if(isset($_GET['nb_domains']))
145
	if(isset($_GET['nb_domains']))
146
	{
146
	{
147
		$nb_domains = $_GET['nb_domains'];
147
		$nb_domains = $_GET['nb_domains'];
148
		$nb_urls = 0;
148
		$nb_urls = 0;
149
		$nb_ip = 0;
149
		$nb_ip = 0;
150
	}
150
	}
151
	else
151
	else
152
	{
152
	{
153
		if (file_exists($wl_categorie_domain_file))
153
		if (file_exists($wl_categorie_domain_file))
154
			$nb_domains = exec("wc -l $wl_categorie_domain_file | cut -d ' ' -f1");
154
			$nb_domains = exec("wc -l $wl_categorie_domain_file | cut -d ' ' -f1");
155
		else
155
		else
156
			$nb_domains = $l_error_open_file." ".$wl_categorie_domain_file;
156
			$nb_domains = $l_error_open_file." ".$wl_categorie_domain_file;
157
		$nb_urls = 0;
157
		$nb_urls = 0;
158
		$nb_ip = 0;
158
		$nb_ip = 0;
159
	}
159
	}
160
	}
160
	}
161
}
161
}
162
$global_usage = file($bl_dir."global_usage");
162
$global_usage = file($bl_dir."global_usage");
163
$langue = strtoupper($Language);
163
$langue = strtoupper($Language);
164
if(isset($categorie) && !isset($ossi))
164
if(isset($categorie) && !isset($ossi))
165
{
165
{
166
	$fin1 = 0; $fin2 = 0;
166
	$fin1 = 0; $fin2 = 0;
167
	foreach($global_usage as $line)
167
	foreach($global_usage as $line)
168
	{
168
	{
169
		if(preg_match("#^NAME:.$categorie$#", $line) == 1)
169
		if(preg_match("#^NAME:.$categorie$#", $line) == 1)
170
			$fin1 = 1;
170
			$fin1 = 1;
171
		if($fin1 && preg_match("#^DESC.$langue:.#", $line) == 1)
171
		if($fin1 && preg_match("#^DESC.$langue:.#", $line) == 1)
172
			$l_description_cat = preg_replace("#^DESC.$langue:.#", "", $line);
172
			$l_description_cat = preg_replace("#^DESC.$langue:.#", "", $line);
173
		if($fin1 && preg_match("#^NAME.$langue:.#", $line) == 1)
173
		if($fin1 && preg_match("#^NAME.$langue:.#", $line) == 1)
174
		{
174
		{
175
			$l_name_cat = preg_replace("#^NAME.$langue:.#", "", $line);
175
			$l_name_cat = preg_replace("#^NAME.$langue:.#", "", $line);
176
			$fin2 = 1;
176
			$fin2 = 1;
177
		}
177
		}
178
		if($fin2) break;
178
		if($fin2) break;
179
		
179
		
180
	}
180
	}
181
}
181
}
182
echo "<TITLE>$l_title</TITLE>";
182
echo "<TITLE>$l_title</TITLE>";
183
?>
183
?>
184
<link rel="stylesheet" href="/css/style.css" type="text/css">
184
<link rel="stylesheet" href="/css/style.css" type="text/css">
185
</HEAD>
185
</HEAD>
186
<body>
186
<body>
187
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
187
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
188
	<tr><th><?php if(isset($categorie)){echo $categorie ;}else{echo $l_error_cat;}?></th></tr>
188
	<tr><th><?php if(isset($categorie)){echo $categorie ;}else{echo $l_error_cat;}?></th></tr>
189
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
189
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
190
</TABLE>
190
</TABLE>
191
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
191
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
192
	<tr><td valign="middle" align="left">
192
	<tr><td valign="middle" align="left">
193
		<?php
193
		<?php
194
		if(isset($_GET["filtre"]))
194
		if(isset($_GET["filtre"]))
195
		{
195
		{
196
			$filtre = $_GET["filtre"];
196
			$filtre = $_GET["filtre"];
197
		}
197
		}
198
		else
198
		else
199
		{
199
		{
200
			$filtre = $liste == "bl" ? $bl_categorie_domain_file : $wl_categorie_domain_file;
200
			$filtre = $liste == "bl" ? $bl_categorie_domain_file : $wl_categorie_domain_file;
201
		}
201
		}
202
		$filtre_domain = $liste == "bl" ? $bl_categorie_domain_file : $wl_categorie_domain_file;
202
		$filtre_domain = $liste == "bl" ? $bl_categorie_domain_file : $wl_categorie_domain_file;
-
 
203
		if(!isset($ossi))
203
		$filtre_url = $liste == "bl" ? $bl_categorie_url_file : "";
204
			$filtre_url = $liste == "bl" ? $bl_categorie_url_file : "";
204
		$filtre_ip = $liste == "bl" ? $bl_categorie_ip_file : $wl_categorie_ip_file;
205
		$filtre_ip = $liste == "bl" ? $bl_categorie_ip_file : $wl_categorie_ip_file;
205
		$compat_categorie=strtr($categorie,"-","_");
206
		$compat_categorie=strtr($categorie,"-","_");
206
		if(!isset($ossi))
207
		if(!isset($ossi))
207
		{
208
		{
208
		echo "<br><center><b>$l_name_cat</b></center>";
209
		echo "<br><center><b>$l_name_cat</b></center>";
209
		echo "<center><b>$l_description_cat</b></center><br>";
210
		echo "<center><b>$l_description_cat</b></center><br>";
210
		echo "$l_nb_domains <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_domain&titre=domain&nb_domains=$nb_domains&nb_urls=$nb_urls&nb_ip=$nb_ip'>$nb_domains</a></b><br>";
211
		echo "$l_nb_domains <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_domain&titre=domain&nb_domains=$nb_domains&nb_urls=$nb_urls&nb_ip=$nb_ip'>$nb_domains</a></b><br>";
211
		echo "$l_nb_urls <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_url&titre=url&nb_domains=$nb_domains&nb_urls=$nb_urls&nb_ip=$nb_ip'>$nb_urls</a></b><br>";
212
		echo "$l_nb_urls <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_url&titre=url&nb_domains=$nb_domains&nb_urls=$nb_urls&nb_ip=$nb_ip'>$nb_urls</a></b><br>";
212
		echo "$l_nb_ip <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_ip&titre=ip&nb_domains=$nb_domains&nb_urls=$nb_urls&nb_ip=$nb_ip'>$nb_ip</a></b><br>";
213
		echo "$l_nb_ip <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_ip&titre=ip&nb_domains=$nb_domains&nb_urls=$nb_urls&nb_ip=$nb_ip'>$nb_ip</a></b><br>";
213
		}
214
		}
214
		else
215
		else
215
		{
216
		{
216
		
217
		
217
		echo "$l_nb_domains <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_domain&titre=domain&nb_domains=$nb_domains&nb_ip=$nb_ip&ossi=yes'>$nb_domains</a></b><br>";
218
		echo "$l_nb_domains <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_domain&titre=domain&nb_domains=$nb_domains&nb_ip=$nb_ip&ossi=yes'>$nb_domains</a></b><br>";
218
		echo "$l_nb_ip <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_ip&titre=ip&nb_domains=$nb_domains&nb_ip=$nb_ip&ossi=yes'>$nb_ip</a></b><br>";
219
		echo "$l_nb_ip <b><a href='?liste=$liste&cat=$categorie&filtre=$filtre_ip&titre=ip&nb_domains=$nb_domains&nb_ip=$nb_ip&ossi=yes'>$nb_ip</a></b><br>";
219
		}
220
		}
220
		?>
221
		?>
221
	</td></tr>
222
	</td></tr>
222
</TABLE>
223
</TABLE>
223
<br>
224
<br>
224
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
225
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
225
	<tr><th>
226
	<tr><th>
226
		<?php
227
		<?php
227
		if(isset($_GET["titre"]))
228
		if(isset($_GET["titre"]))
228
		{
229
		{
229
			$titre = $_GET["titre"];
230
			$titre = $_GET["titre"];
230
		}
231
		}
231
		else
232
		else
232
		{
233
		{
233
			$titre = "domain";
234
			$titre = "domain";
234
		}
235
		}
235
		echo $l_example.$titre;
236
		echo $l_example.$titre;
236
		?>
237
		?>
237
	</th></tr>
238
	</th></tr>
238
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
239
	<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1" height="2"></td></tr>
239
</TABLE>
240
</TABLE>
240
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
241
<TABLE width="100%" border=1 cellspacing=0 cellpadding=1>
241
	<tr><td valign="middle" align="left">
242
	<tr><td valign="middle" align="left">
242
<?php
243
<?php
243
		if($titre == "domain")
244
		if($titre == "domain")
244
		{
245
		{
245
 
246
 
246
			$filtre = $liste == "bl" ? $bl_categorie_domain_file : $wl_categorie_domain_file;
247
			$filtre = $liste == "bl" ? $bl_categorie_domain_file : $wl_categorie_domain_file;
247
			exec("head -n 15 $filtre | cut -d '/' -f2", $resultat);
248
			exec("head -n 15 $filtre | cut -d '/' -f2", $resultat);
248
		}
249
		}
249
		elseif($titre == "ip")
250
		elseif($titre == "ip")
250
		{
251
		{
251
			$filtre = $liste == "bl" ? $bl_categorie_ip_file : $wl_categorie_ip_file;
252
			$filtre = $liste == "bl" ? $bl_categorie_ip_file : $wl_categorie_ip_file;
252
			exec("head -n 15 $filtre | cut -d ' ' -f3", $resultat);
253
			exec("head -n 15 $filtre | cut -d ' ' -f3", $resultat);
253
		}
254
		}
254
		else
255
		else
255
		{
256
		{
256
			exec("head -n 15 $filtre", $resultat);
257
			exec("head -n 15 $filtre", $resultat);
257
		}
258
		}
258
		for($i=0; $i<count($resultat); $i++)
259
		for($i=0; $i<count($resultat); $i++)
259
			echo $resultat[$i]."<br/>";
260
			echo $resultat[$i]."<br/>";
260
		?>
261
		?>
261
	</td></tr>
262
	</td></tr>
262
</TABLE>
263
</TABLE>
263
<center><a href="javascript:window.close();"><b><?php echo "$l_close"; ?></b></a></center>
264
<center><a href="javascript:window.close();"><b><?php echo "$l_close"; ?></b></a></center>
264
</BODY>
265
</BODY>
265
</HTML>
266
</HTML>
266
 
267