Ich hab das folgende problem:
Also zunächst einmal der script :
<script>
function winopen() {
var popUpSizeX=700;
var popUpSizeY=500;
var popUpLocationX=50;
var popUpLocationY=50;
var popUpURL="http://www.java-fun.de/klein.shtml";
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=popUpURL;
splashWin.focus();
}
</script>
nach diesem script sollte sich ein Fenster ohne rahmen öffnen(700x500) Bei allen anderen ist das auch so , nur bei mir nicht, bei mir öffnet das fenster im fullscreen :(
Weiss jemand woran das liegen könnte ? vielleicht an irgendwelchen browser einstellungen?
Danke im vorraus