<!--
function eur(zahl) {
if((zahl*1)==0) return '';
return (zahl.toFixed(2)+' EUR').replace(/\./,',');
}
function berechne() {
if(!pruefe()) return alert('Es sind nur Zahleneingaben zulaessig');
summe=0;anzahl=document.getElementById('anzahlUG9zdGthcnRl').value;
document.getElementById('wpreisUG9zdGthcnRl').value=eur(anzahl*0.4);
document.getElementById('wocheUG9zdGthcnRl').value=eur(anzahl*0.05);
document.getElementById('jahrUG9zdGthcnRl').value=eur(anzahl*2.6);
summe+=anzahl*2.6;
anzahl=document.getElementById('anzahlU3RhbmRhcmRicmllZgLL').value;
document.getElementById('wpreisU3RhbmRhcmRicmllZgLL').value=eur(anzahl*0.45);
document.getElementById('wocheU3RhbmRhcmRicmllZgLL').value=eur(anzahl*0.1);
document.getElementById('jahrU3RhbmRhcmRicmllZgLL').value=eur(anzahl*5.2);
summe+=anzahl*5.2;
anzahl=document.getElementById('anzahlS29tcGFrdGJyaWVm').value;
document.getElementById('wpreisS29tcGFrdGJyaWVm').value=eur(anzahl*0.8);
document.getElementById('wocheS29tcGFrdGJyaWVm').value=eur(anzahl*0.1);
document.getElementById('jahrS29tcGFrdGJyaWVm').value=eur(anzahl*5.2);
summe+=anzahl*5.2;
anzahl=document.getElementById('anzahlR3JvJnN6bGlnO2JyaWVm').value;
document.getElementById('wpreisR3JvJnN6bGlnO2JyaWVm').value=eur(anzahl*1.19);
document.getElementById('wocheR3JvJnN6bGlnO2JyaWVm').value=eur(anzahl*0.26);
document.getElementById('jahrR3JvJnN6bGlnO2JyaWVm').value=eur(anzahl*13.52);
summe+=anzahl*13.52;
anzahl=document.getElementById('anzahlTWF4aWJyaWVm').value;
document.getElementById('wpreisTWF4aWJyaWVm').value=eur(anzahl*1.79);
document.getElementById('wocheTWF4aWJyaWVm').value=eur(anzahl*0.41);
document.getElementById('jahrTWF4aWJyaWVm').value=eur(anzahl*21.32);
summe+=anzahl*21.32;
anzahl=document.getElementById('anzahlJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value;
document.getElementById('wpreisJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value=eur(anzahl*3.45);
document.getElementById('wocheJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value=eur(anzahl*0.4);
document.getElementById('jahrJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value=eur(anzahl*20.8);
summe+=anzahl*20.8;
document.getElementById('summe').value=eur(summe);}
function pruefe() {
if(document.getElementById('anzahlUG9zdGthcnRl').value.search(/^\d*$/)<0) return false ;
if(document.getElementById('anzahlU3RhbmRhcmRicmllZgLL').value.search(/^\d*$/)<0) return false ;
if(document.getElementById('anzahlS29tcGFrdGJyaWVm').value.search(/^\d*$/)<0) return false ;
if(document.getElementById('anzahlR3JvJnN6bGlnO2JyaWVm').value.search(/^\d*$/)<0) return false ;
if(document.getElementById('anzahlTWF4aWJyaWVm').value.search(/^\d*$/)<0) return false ;
if(document.getElementById('anzahlJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value.search(/^\d*$/)<0) return false ;
return true;}//-->
