function zubehoer_wert(feld)
{
	var array_wert = feld.split("|");
	return array_wert[1];
}
function zubehoer_berechnen()
{
		var zubehoer_summe = 0;
      var gesamt_summe = parseFloat(document.detail.summe_fahrzeug_init.value);
		document.detail.summe_szb.value = 0;
		for(var i=0; i < document.detail.length; i++)
		{
			if (document.detail.elements[i].type == "checkbox")
			{
				if(document.detail.elements[i].checked == true)
				{
					zubehoer_summe += parseFloat(zubehoer_wert(document.detail.elements[i].value));
				}
			}
		}
		document.detail.summe_szb.value = zubehoer_summe.toFixed(2);
		gesamt_summe += zubehoer_summe;
		gesamt_summe = gesamt_summe.toFixed(2);
		document.detail.summe_fahrzeug.value = gesamt_summe;
	}

