1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
|
<HTML>
<HEAD>
<TITLE>Galerie</TITLE>
<script language='javascript'>
var arrTemp= self.location.href.split("?");
if (arrTemp[1].indexOf("&")!=-1) {
var strTemp = arrTemp[1].split("&");
var picUrl = strTemp[0];
var picStr = strTemp[1];
} else {
var picStr = "";
var picUrl = (arrTemp.length>0)?arrTemp[1]:"";
}
var NS = (navigator.appName=="Netscape")?true:false;
function FitPic() {
iWidth = (NS)?window.innerWidth:document.body.clientWidth;
iHeight = (NS)?window.innerHeight:document.body.clientHeight;
iWidth = document.images[0].width - iWidth;
iHeight = document.images[0].height - iHeight;
if (picStr) {
document.title = unescape(picStr);
} else {
document.title = "galerie";
}
window.resizeBy(iWidth, iHeight);
self.focus();
};
</script>
</HEAD>
<BODY onload='FitPic();' topmargin="0" marginheight="0" leftmargin="0" marginwidth="0">
<script language='javascript'>
document.write( "<img src='" + picUrl + "' border=0>" );
</script>
</BODY>
</HTML> |