<!--
var avail_hgt=0, hgt=0, hoehe=0;

/* Die Höhe des Browserfensters wird ermittelt */
if(typeof(window.innerHeight) == 'number' ){
  //Non-IE
  avail_hgt = window.innerHeight;
}
else if(document.documentElement && document.documentElement.clientHeight){
  //IE 6+ in 'standards compliant mode'
  avail_hgt = document.documentElement.clientHeight;
}
else if(document.body && document.body.clientHeight){
  //IE 4 compatible
  avail_hgt = document.body.clientHeight;
}

if(document.all){
  hgt = document.all.Pagewrap.offsetHeight;
  if (avail_hgt > hgt)
    hoehe = avail_hgt - hgt;
}
if(document.getElementById){
  hgt = document.getElementById('Pagewrap').offsetHeight;
  if (avail_hgt > hgt)
    hoehe = avail_hgt - hgt;
}

if (hoehe)
document.write("<img src=\"../pics/spcr.gif\" width=\"950\" height=\""+hoehe+"\" border=\"0\" alt=\"\" />");
//-->
