

function InitBox(ID, maxh, seth ){
 var obj = document.getElementById(ID);
 var h = obj.offsetHeight;
 if( h > maxh ){
  obj.style.height = seth + "px";
  document.write('<div id="link_'+ID+'" class="openBox"><div>...</div><a class="openBox" href="javascript:ShowBox(\''+ID+'\');" >&gt;&gt;&gt; weiter lesen</a></div><div class="end"></div>');
 }
}

function InitBoxTop(ID){
  InitBox(ID, 35, 33);
}
function InitBoxNormal(ID){
  InitBox(ID, 75, 73);
}

function InitBoxNews(ID){
  InitBox(ID, 75, 73);
}

function ShowBox( ID ){
  document.getElementById(ID).style.height = "auto";
  document.getElementById("link_" + ID).style.display = "none";
}
