26 lines
656 B
HTML
Executable File
26 lines
656 B
HTML
Executable File
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<title>Picture</title>
|
|
</head>
|
|
|
|
<body bgcolor="black">
|
|
<div align="center">
|
|
<script language="javascript" type="text/javascript">
|
|
<!--
|
|
var image_src = document.location;
|
|
var image_pattern = /.*id=(.*)/;
|
|
var which_image = 0;
|
|
|
|
image_pattern.test( image_src );
|
|
|
|
which_image = RegExp.$1;
|
|
|
|
document.write( "<img src=" + which_image + " />" );
|
|
//-->
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|