32 lines
		
	
	
		
			469 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			469 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
$img = '';
 | 
						|
if (isset($_GET['img'])) { $img = $_GET['img']; }
 | 
						|
 | 
						|
?>
 | 
						|
 | 
						|
<html>
 | 
						|
 | 
						|
<head>
 | 
						|
<title>:: click on the picture to close window ::</title>
 | 
						|
</head>
 | 
						|
 | 
						|
<body bgcolor=#000000 marginheight=4 marginwidth=15 leftmargin=15 topmargin=4>
 | 
						|
 | 
						|
<div align=center>
 | 
						|
 | 
						|
<table cellpadding=3 cellspacing=3 border=0 width="100">
 | 
						|
<tr>
 | 
						|
 | 
						|
<td bgcolor="#eeeeee">
 | 
						|
<a href="javascript:window.close();">
 | 
						|
<img border=0 src="<?php echo $img ?>">
 | 
						|
</a>
 | 
						|
</td>
 | 
						|
 | 
						|
</tr>
 | 
						|
</table>
 | 
						|
 | 
						|
</div>
 | 
						|
</body>
 | 
						|
</html>
 |