Thomas J.S.: Nachtrag: Korrektur

Beitrag lesen

Hallo Knut!

An der Stelle wo das bild hinkommen soll:

Also ganz korrekt :

<script language="JavaScript">
function bild(){
  var x, y;
  if (document.layers){
  x = self.innerWidth;
  y = self.innerHeight;
  }
  else {
  x = document.body.clientWidth;
  y = document.body.clientHeight;
  }
  breite = x;
  hoehe = y;

document.write("<img src="bild.gif" width=""+breite+"" height=""+hoehe+"" border="0" alt="">");
}
bild();
</script>

Grüße
Thomas