function start()
{
 document.getElementById('formular_1').className="ausblenden";
 if( window.location.href.indexOf("?") != -1 )
 {
  var sd = window.location.href.split( "?" ); 
  if( sd.length >= 1 )
   {
    if( sd[1].indexOf("Vbegriff") != -1 )
    {
     document.getElementById('formular_1').className="einblenden";
    }
  }  
 }
 for( d=1 ; d <= 6 ; d++)
 {
  var ob=document.getElementById('content_text_'+d);
  ob.className="ausblenden";
 }

 //var obb= document.getElementById('summ').parentNode;
 //obb.innerHTML='<input type="button" onclick="form_senden();" id="summ" value=" Bitte erklären! " class="subm" />';

}

function teil( wert )
{
 document.getElementById('formular_1').className="ausblenden";
 for( d=1 ; d <= 6 ; d++ )
 {
  var ob=document.getElementById('content_text_'+d);
  if( d == wert )
  {
   ob.className="einblenden";
  }
  else
  {
   ob.className="ausblenden";
  }
 }
 var obbitte = document.getElementById('bitte');
 if( obbitte != null )
 {
  obbitte.className="ausblenden";
 }
 
}

function einblenden(wert)
{
 teil( 0 );
 // wenn eine Fehlermeldung eingeblendet werden soll
 var obbitte = document.getElementById('bitte');
 if( obbitte != null )
 {
  obbitte.className="fehler";
 }
 
 var ob=document.getElementById(wert);
 ob.className="einblenden";
}


function start_index()
{
 document.getElementById('formular_1').className="ausblenden";
 if( window.location.href.indexOf("?") != -1 )
 {
  var sd = window.location.href.split( "?" ); 
  if( sd.length >= 1 )
   {
    if( sd[1].indexOf("Vdomain") != -1 )
    {
     document.getElementById('formular_1').className="einblenden";
    }
  }  
 }
}

function einblenden_index( wert )
{
 // wenn eine Fehlermeldung eingeblendet werden soll
 var obbitte = document.getElementById('bitte');
 if( obbitte != null )
 {
  obbitte.className="fehler";
 }
 
 var ob=document.getElementById(wert);
 ob.className="einblenden";
}