50 lines
1.5 KiB
HTML
Executable File
50 lines
1.5 KiB
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>
|
|
<link href="jairus_index.css" type="text/css" rel="stylesheet" />
|
|
<style type="text/css">
|
|
body { color: #FFFFFF; }
|
|
a:link { color: #FFCC33; text-decoration: none; }
|
|
a:visited { color: #FFCC33; text-decoration: none; }
|
|
a:hover { color: #FF9900; text-decoration: underline; }
|
|
</style>
|
|
<script language="javascript" type="text/javascript" src="random_images.js"></script>
|
|
<script language="javascript" src="jairus.js" type="text/javascript"></script>
|
|
</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=(.*)\+lang=(.*)/;
|
|
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 += 170;
|
|
|
|
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()' /><br /> <br />" );
|
|
|
|
language = RegExp.$2;
|
|
According_Caption();
|
|
According_Link();
|
|
|
|
//-->
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|