try{
 if(!hmin) hmin="70px";
} catch(e) { hmin="70px"; }
try{
 if(!hmax) hmax="200px";
} catch(e) { hmax="200px"; }
document.write('<style type="text/css">');
document.write('.dataview { height:'+hmin+';overflow:hidden;position:relative; }');
document.write('</style>');
var olddiv=null;
function openDet(obj){
  var id="BX"+obj.getAttribute("id").substring(1);
  var divObj=null;
  if(document.getElementById)
    divObj=document.getElementById(id);
  else return;
  if(divObj.style.height==hmax){
    divObj.style.height=hmin;
    divObj.style.overflow="hidden";
    obj.src="/static/saalfeld/more.png";
    obj.alt="mehr Details";
  }
  else {
    divObj.style.height=hmax;
    divObj.style.overflow="auto";
    obj.src="/static/saalfeld/less.png";
    obj.alt="weniger Details";
  }
}