
function posFooter() {
//Positionierung der Footer mindestens op 590px, und mindestens 50px unterhalb content
if(document.getElementById) {
//Höhe von content bestimmen
  var OffTop = document.getElementById('cnt').offsetTop;
  var OffHgt = document.getElementById('cnt').offsetHeight;
  FooTop = OffTop+OffHgt+30;
  if(FooTop>500){
    document.getElementById('footer').style.top=FooTop;
  } else {}
}
}

function change(id,klasse)
{
  document.getElementById(id).className = klasse;
}

function InfoPopUp(Datei)
{
 window.open(Datei,'Info','width=400,height=410,toolbar=no,menubar=no,location=no,status=no,scrollbars=no');
}


