<!--
function BlockEinAusBlenden(nr,va)
{
  	if(document.getElementById)
  	{
    		obj=document.getElementById("absatz"+nr);
  	}
  	if(document.all && !document.getElementById)
  	{
    		obj=document.all["absatz"+nr];
  	}

  	if(va=="anzeigen")
  	{
    		obj.style.display="block";
    		document.forms["absatznr"+nr].elements["viewbutton"+nr].value="ausblenden";
  	}
  	else if(va=="ausblenden")
  	{
    		obj.style.display="none";
    		document.forms["absatznr"+nr].elements["viewbutton"+nr].value="anzeigen";
  	}
}

function forminit(form_name,feld_name)
{
	if(feld_name != "nofield") { document.forms[form_name].elements[feld_name].select(); }
}

var audioOn = false;
function audioDo(doWhat,toWhat)
{
	if(audioOn)
	{
		var A = eval('document.'+toWhat);
		clearInterval(soundix);
		if (A != null)
		{
			if (doWhat=='stop') A.stop();
			else
			{
				if (navigator.appName == 'Netscape') A.play();
				else
				{
					if (document.M == null)
					{
						document.M = false; var m;
						for(m in A) if (m == "ActiveMovie")
						{
							document.M = true; break;
						}
					}
					if (document.M) A.SelectionStart = 0;
					if (document.M) if(A.play) A.play();
				}
			}
		}
	}
}

function autoBlockEinAusBlenden(absatzanzahl)
{
	if(absatzanzahl > 0)
	{
		for(i=1;i<=absatzanzahl;i++)
		{
  			if(document.getElementById)
  			{
    				obj=document.getElementById("absatz"+i);
  			}
  			if(document.all && !document.getElementById)
  			{
    				obj=document.all["absatz"+i];
		  	}
			obj.style.display="none";
		}
	}
}

// -->
