Hello.
Tu peux essayer un truc du genre :
<script>
function initWin()
{
window.onresize = resizeWin;
}
function resizeWin()
{
top.window.moveTo(0, 0);
top.window.resizeTo(screen.availWidth, screen.availHeight);
}
</script>
<body onload="initWin();">
</body>
Rajoute une tempo pour éviter le scintillement de la fenêtre pendant la tentative de forçage de redimensionnement si tu le souhaites.
A+.