38 lines
980 B
HTML
Executable File
38 lines
980 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 style="background-color: #000000; margin: 7px 0px 0px 0px;">
|
|
<div align="center">
|
|
<script language="javascript" type="text/javascript">
|
|
<!--
|
|
var image_src = document.location;
|
|
var image_pattern = /.*id=(.*)/;
|
|
var which_image = 0;
|
|
|
|
function Resize_Win()
|
|
{
|
|
var image_w = document.getElementById( "picture" ).width;
|
|
var image_h = document.getElementById( "picture" ).height;
|
|
|
|
image_w += 30;
|
|
image_h += 75;
|
|
|
|
window.resizeTo( image_w, image_h );
|
|
}
|
|
|
|
image_pattern.test( image_src );
|
|
|
|
which_image = RegExp.$1;
|
|
|
|
document.write( "<img src=" + which_image + " id='picture' onload='Resize_Win()' />" );
|
|
|
|
//-->
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|