function neuladen() { if (document.all) // kennt nur der IE, Netscape bleibt aussen vor { history.go(0) // lädt das Dokument auf Position 0, also das } // aktuelle } function reloadPage(init) { if (init==true) with (navigator) { if ((appName=="Netscape")&&(parseInt(appVersion)==4)) { document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; } } else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload(); } reloadPage(true);