<!--
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.35);
document.getElementById('wocheUG9zdGthcnRl').value=eur(anzahl*0.1);
document.getElementById('jahrUG9zdGthcnRl').value=eur(anzahl*5.2);
summe+=anzahl*5.2;
anzahl=document.getElementById('anzahlU3RhbmRhcmRicmllZgLL').value;
document.getElementById('wpreisU3RhbmRhcmRicmllZgLL').value=eur(anzahl*0.4);
document.getElementById('wocheU3RhbmRhcmRicmllZgLL').value=eur(anzahl*0.15);
document.getElementById('jahrU3RhbmRhcmRicmllZgLL').value=eur(anzahl*7.8);
summe+=anzahl*7.8;
anzahl=document.getElementById('anzahlS29tcGFrdGJyaWVm').value;
document.getElementById('wpreisS29tcGFrdGJyaWVm').value=eur(anzahl*0.6);
document.getElementById('wocheS29tcGFrdGJyaWVm').value=eur(anzahl*0.3);
document.getElementById('jahrS29tcGFrdGJyaWVm').value=eur(anzahl*15.6);
summe+=anzahl*15.6;
anzahl=document.getElementById('anzahlR3JvJnN6bGlnO2JyaWVm').value;
document.getElementById('wpreisR3JvJnN6bGlnO2JyaWVm').value=eur(anzahl*0.97);
document.getElementById('wocheR3JvJnN6bGlnO2JyaWVm').value=eur(anzahl*0.48);
document.getElementById('jahrR3JvJnN6bGlnO2JyaWVm').value=eur(anzahl*24.96);
summe+=anzahl*24.96;
anzahl=document.getElementById('anzahlTWF4aWJyaWVm').value;
document.getElementById('wpreisTWF4aWJyaWVm').value=eur(anzahl*1.5);
document.getElementById('wocheTWF4aWJyaWVm').value=eur(anzahl*0.7);
document.getElementById('jahrTWF4aWJyaWVm').value=eur(anzahl*36.4);
summe+=anzahl*36.4;
anzahl=document.getElementById('anzahlJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value;
document.getElementById('wpreisJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value=eur(anzahl*2.9);
document.getElementById('wocheJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value=eur(anzahl*0.95);
document.getElementById('jahrJlV1bWw7YmVyZ2FiZWVpbnNjaHIu').value=eur(anzahl*49.4);
summe+=anzahl*49.4;
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;}//-->
