document.write(
'<br>'
+'<DIV id="block2">'
+'<table id="footline_footline" cellSpacing="0" cellPadding="0" border="0" width="100%" style="background-color:#010D9D;position:absolute;height:25px;margin:0px;padding:0px;">'+' <tr><td width="100%" background="Bilder/Headerlogo2.jpg">'+'  <p align="center"><b><font color="#000000">'+'   <a href="mailto:info@vhs-lauenburg.de"><font class="d" color="#000000"><b>email</b></font></a>'+'       <font color="#000000"><font class="d">&nbsp;-&nbsp;</font>'+'   <a href="http://www.vhs-lauenburg.de"><font class="d" color="#000000"><b>www.vhs-lauenburg.de</b></font></a>'+'       <font class="d">&nbsp;-&nbsp;</font><font class="d" color="#000000">copyright</font></font>'+'   <a href="http://www.swash.de" target="_blank"><font class="d" color="#000000"><b>Swash</b></font></a>'+'       <font color="#000000"><font class="d">&nbsp;-&nbsp;</font>'+'  <a href="#top"><font class="d" color="#000000"><b>zurück nach oben</b></font></a></font>'+'       <font class="d">&nbsp;&nbsp;</font><font color="#000000">&nbsp;&nbsp;</font>'+'   <a href="http://www.swash.de" target="_blank"><font class="d" color="#010D9D"></font></a>'+'       </b></p></td></tr>'+'</table>'
+'</DIV>'
);

var footline_gloScrollTop = null
var bodyMinWidth = 845;
 
function footline_getWindowHeight() {
  if (window.innerHeight) return window.innerHeight
  else return document.body.offsetHeight;
}
 
function footline_getWindowWidth() {
  if (window.innerWidth) return window.innerWidth
  else return document.body.offsetWidth;
}
 
function footline_getScrollPos() {
  if (window.pageYOffset) return window.pageYOffset
  else return document.body.scrollTop;
}
 
function footline_getElementHeight(el) {
  if (document.all) { return el.offsetHeight; }
  else { return parseInt(el.style.height); }
}
 
//  var el = document.getElementById("footline_footline");
//  alert(document.body.offsetWidth + " - " + el.offsetWidth);
 
function footline_getCorrect() {
  return (footline_getWindowWidth() < bodyMinWidth ? 20 : 4);
}
 
footline_scrollFunc = function (timeout) {
  if (timeout) { window.setTimeout("footline_scrollFunc(true);", 50) }
  if (footline_getScrollPos() == footline_gloScrollTop) return;
  var el = document.getElementById("footline_footline");
  el.style.position = "absolute";
  el.style.top = eval(footline_getWindowHeight() + footline_getScrollPos() - footline_getElementHeight(el) - footline_getCorrect());
} // END document.body.onscroll()
 
document.body.onscroll = footline_scrollFunc;
//document.body.onload   = footline_scrollFunc;
//window.onscroll = function () { window.setTimeout("scrollFunc(true);", 50) };
window.setTimeout("footline_scrollFunc(true)", 50);

