Spitze, vielen Dank, mußte nur alle || durch && ersetzen und alle >= bzw<= komplett "umdrehen"
MfG Veloce

MfG Veloce
<script language="JavaScript" type="text/javascript" type="text/javascript">
Preis1=Preis2=0;
function berechnen()
{
feld = document.bestellformular;
Anzahl1 = feld.anzahlm2.value; // Hier wird die Anzahl von Artikel 1 festgestellt
Anzahl2 = feld.anzahlm3.value; // Hier wird die Anzahl von Artikel 2 festgestellt
if(Anzahl1>=1 && Anzahl1<=4) Preis1 = 198.50;
if(Anzahl1>=5 && Anzahl1<=9) Preis1 = 187.50;
if(Anzahl1>=10) Preis1 = 174.50;
if(Anzahl2>=1 && Anzahl2<=4) Preis2 = 248.50;
if(Anzahl2>=5 && Anzahl2<=9) Preis2 =237.50;
if(Anzahl2>=10) Preis2 = 224.50;
Ergebnis = eval((Anzahl1*Preis1)+(Anzahl2*Preis2)); // Das Ergebnis wird berechnet
feld.gesamtpreis.value=Ergebnis; // und hier wirds ausgegeben
}
</script>