Upsi - falsche redir.html. Hier die korrekte:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Redirect Test</title>
<script language="JavaScript1.3">
h = self.outerHeight; w = self.outerWidth;
if( h < 200 || w < 200 ) {
// redirect mit Parameter "zu klein" aufrufen
location.href="/cgi-bin/redir.pl?parm=toosmall"
} else {
// redirect aufrufen, Fenster nicht zu klein
location.href="/cgi-bin/redir.pl?parm=ok"
}
</script>
<META http-equiv="refresh" content="5;URL=/cgi-bin/redir.pl?parm=none">
</head>
<body>
YOU ... WILL ... BE ... R E D I R E C T E D !
</body>
</html>