/* Fehler werden abefangen */ function catcherror() { return true; } document.onerror = catcherror; /* frames lassen sich nur vom elternfenster anzeigen */ function checkparent(parentframename,gotourl) { if(!top[parentframename]) location.href = gotourl; } /* Aktivierte umrahmung beim link verhindern */ for(var i = 0; i != document.links.length; i++) document.links[i].onfocus = function() { this.blur(); } /* Überprüfung ob alle bilder geladen sind, wenn nicht reload */ for(var i = 0; i != document.images.length; i++) { if(document.images[i].compete == false) location.reload(); }