try{
 if(!hmin) hmin="110px";
} catch(e) { hmin="110px"; }
try{
 if(!hmax) hmax="230px";
} catch(e) { hmax="230px"; }
document.write('<style type="text/css">');
document.write('.dataview { height:'+hmin+';overflow:hidden;position:relative; }');
document.write('</style>');
var olddiv=null;
var differenz=parseInt(hmax.substring(0,hmax.length-2),10);


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="more.png";
    obj.alt="mehr Details";
    setTall3();
  }
  else {
    divObj.style.height=hmax;
    divObj.style.overflow="auto";
    obj.src="less.png";
    obj.alt="weniger Details";
    setTall2()
  }
}

function setTall2() {

	if (document.getElementById) {
		// the divs array contains references to each column's div element.  
		// Replace 'center' 'right' and 'left' with your own.  
		// Or remove the last one entirely if you've got 2 columns.  Or add another if you've got 4!
		var divs = new Array(document.getElementById('second_left'), document.getElementById('second_center'), document.getElementById('second_right'), document.getElementById('big_center2'));
			
		// Let's set all columns to that maximum height
		for (var i = 0; i < divs.length; i++) {
		if (navigator.appVersion.substring(22, 23) != 6){
			divs[i].style.height = (divs[i].offsetHeight + differenz) + 'px';

			
		}}
	}
}

function setTall3() {

	if (document.getElementById) {
		// the divs array contains references to each column's div element.  
		// Replace 'center' 'right' and 'left' with your own.  
		// Or remove the last one entirely if you've got 2 columns.  Or add another if you've got 4!
		var divs = new Array(document.getElementById('second_left'), document.getElementById('second_center'), document.getElementById('second_right'), document.getElementById('big_center2'));
			
		// Let's set all columns to that maximum height
		for (var i = 0; i < divs.length; i++) {
			divs[i].style.height = (divs[i].offsetHeight - differenz) + 'px';

			
		}
	}
}