Also diesen Close Befehl hab ich noch nicht versucht. Bin aber zu allem bereit :-)
Aber habe dieses Script:
In den BODY- TAG:
<script language="JavaScript">
function winopen(url,popUpSizeX,popUpSizeY,popUpLocationX,popUpLocationY){
splashWin = window.open("",'x','fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');
splashWin.blur();
window.focus();
splashWin.resizeTo(popUpSizeX,popUpSizeY);
splashWin.moveTo(popUpLocationX,popUpLocationY);
splashWin.location=url;
splashWin.focus();
}
</script>
Als Link:
<a href="#" onclick="winopen('http://www.Java4hp.de','800','600','0','0')">Fenster öffnen</a>
verwendet für das rahmenlose Fenster und das klappt eigentlich ganz gut mit dem IE6 und das Servicepacket hab ich auch letztens erst installiert!