![]() |
![]() |
2 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
<title>Bla bla...</title>
<script language="javascript">
function CloseUpOption(CUOpic)
{
window.open("http://foo.bar/js/CloseUp.shtml?" + CUOpic, "NewWindow", "scrollbars=0,toolbar=0,location=0,directories=0,status=0,resizable=0,width=290,height=180");
}
</script>
</head>
<body bgcolor="#FFFFFF" topmargin="0" leftmargin="0">
<a href="#" OnMouseOver="CloseUpOption('bild.jpg')">
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
<title>CloseUp</title>
<script language="javascript">function CloseMe() { close() }</script>
</head>
<body bgcolor="#FFFFFF" topmargin="0" leftmargin="0" OnLoad="self.focus()" OnBlur="CloseMe()">
<script language="javascript">
var pic = location.search;
pic = pic.substr(1);
document.write('<a href="javascript:CloseMe()"><img src="http://foo.bar/pics/' + pic + '" border=0 name="pic"></a>');
var x = document.images["pic"].width;
var y = document.images["pic"].height;
window.resizeTo(x+8,y+28);
</script>
</body>
</html>
1
2
3
4
5
function CloseUpOption(CUOpic)
{
window.open("http://foo.bar/js/CloseUp.shtml?" + CUOpic, "NewWindow", "scrollbars=no,dependent=yes,width=290px,height=180px");
}
</script>
![]() |
![]() |
2 Einträge, 1 Seite |