indication_vorhanden												= 0;

function indication_verstecken()
  {
  if(indication_vorhanden)
    {
	if(parseInt(document.getElementById('indication_container').offsetHeight) > 15)
	  {
	  document.getElementById('indication_container').className		= 'indication_eine_zeile';
	  }
	}
  }
function indication_mehr()
  {
  document.getElementById('indication_container').className			= document.getElementById('indication_container').className.replace('indication_eine_zeile','');
  }

window.onload = indication_verstecken;
