• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

JAVA Shop

WebShot

New member
Hi Folks,

ein riesen Problem. Ich haben einen Shop der mit java-script läuft. Leider habe ich Probleme mit den Berechnungen. Gerade Beträge gibt mir das Script richtig aus, ungerade hingegen geben Probleme. Ich finde einfach keine Lösung. Vielleicht hat jemand von Euch eine Idee wie ich dieses Problem in den Griff bekomme.
Hier die Adresse http://www.webshot.ch/shop.htm
Hier der Code:

<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso8859-1">
<title>Shop</title>

<script language="JavaScript">
<!--

function init() {

preis1=document.form1.ein1.value;

preis2=document.form1.ein2.value;

preis3=document.form1.ein3.value;

preis4=document.form1.ein4.value;

preis5=document.form1.ein5.value;

preis6=document.form1.ein6.value;

preis7=document.form1.ein7.value;

preis8=document.form1.ein8.value;

preis9=document.form1.ein9.value;

preis10=document.form1.ein10.value;

preis11=document.form1.ein11.value;

preis12=document.form1.ein12.value;

preis13=document.form1.ein13.value;

preis14=document.form1.ein14.value;

preis15=document.form1.ein15.value;

preis16=document.form1.ein16.value;

preis17=document.form1.ein17.value;

preis18=document.form1.ein18.value;

preis19=document.form1.ein19.value;

preis20=document.form1.ein20.value;

preis21=document.form1.ein21.value;

preis22=document.form1.ein22.value;

preis23=document.form1.ein23.value;

preis24=document.form1.ein24.value;

preis25=document.form1.ein25.value;

preis26=document.form1.ein26.value;

preis27=document.form1.ein27.value;

preis28=document.form1.ein28.value;

preis29=document.form1.ein29.value;

preis30=document.form1.ein30.value;

preis31=document.form1.ein31.value;

preis32=document.form1.ein32.value;

preis33=document.form1.ein33.value;

preis34=document.form1.ein34.value;

preis35=document.form1.ein35.value;

preis36=document.form1.ein36.value;

preis37=document.form1.ein37.value;

preis38=document.form1.ein38.value;

preis39=document.form1.ein39.value;

preis40=document.form1.ein40.value;

preis41=document.form1.ein41.value;

preis42=document.form1.ein42.value;



document.form1.anz1.focus()

}


function changed(obj) {

var anz;

var soll;

var diff;

var typ=obj.name.substring(0,3);

var num=obj.name.substr(3,2);



if(typ == "anz") {

var anz=parseInt(obj.value);



if(!(anz > 0)) {

anz=0;

obj.value="0";

}

document.form1["ges"+num].value=parseFloat(document.form1["ein"+num].value)*anz+ "0";


} else if(typ == "ein") {

alert("Der Verkaufpreis kann nicht geändert werden !");

obj.value=eval("preis"+num);



} else if(typ == "ges") {

anz=parseInt(document.form1["anz"+num].value);

soll=parseFloat(document.form1["ein"+num].value)*anz + "0";

diff=parseFloat(document.form1["ges"+num].value) - soll;

if(diff > 0.005) {

alert("Der Gesamtbetrag kann nicht verändert werden !");

document.form1["ges"+num].value=soll;


}else if(diff < -0.005) {

alert("Der Gesamtbetrag kann nicht verändert werden !");

document.form1["ges"+num].value=soll;

}

}



var total=0;

for (num=1; num<=42; num++) {

total+=parseFloat(document.form1["ges"+num].value);

}

document.form1.total.value=total + "0";



document.form1.total1.value=total + 4.5 + "0";

}


function test() {



//Vorname

var abc = document.form1.Vorname.value;

if (abc == ""){

alert("\nBitte tragen Sie Ihren Vornamen ein. Wir brauchen alle Angaben vollständig!");

document.form1.Vorname.focus();

return false;

}

for (var i = 0; i < abc.length; i++){

var _123 = abc.substring(i, i + 1);

if (((_123 < "a" || "z" < _123) && (_123 < "A" || "Z" < _123)) && _123 != ' '){

alert("\nFeld 'Vorname' akzeptiert nur Buchstaben und Leerzeichen.\n\n" +

"Bitte tragen Sie Ihren Vornamen richtig ein.");

document.form1.Vorname.select();

document.form1.Vorname.focus();

return false;

}

}

//Name

var abc = document.form1.Nachname.value;

if (abc == ""){

alert("\nBitte tragen Sie Ihren Namen ein. Wir brauchen alle Angaben vollständig!");

document.form1.Nachname.focus();

return false;

}

for (var i = 0; i < abc.length; i++){

var _123 = abc.substring(i, i + 1);

if (((_123 < "a" || "z" < _123) && (_123 < "A" || "Z" < _123)) && _123 != ' '){

alert("\nFeld 'Name' akzeptiert nur Buchstaben und Leerzeichen.\n\n" +

"Bitte tragen Sie Ihren Namen richtig ein.");

document.form1.Nachname.select();

document.form1.Nachname.focus();

return false;

}

}

//Ort

var abc = document.form1.Ort.value;

if (abc == ""){

alert("\nBitte tragen Sie den Ortsnamen ein. Wir brauchen alle Angaben vollständig!");

document.form1.Ort.focus();

return false;

}

//Email

if (document.form1.Email.value == ""){

alert("\nBitte tragen Sie Ihre Email-Adresse ein. Wir brauchen alle Angaben vollständig!")

document.form1.Email.focus();

return false;

}

if (document.form1.Email.value.indexOf ('@',0) == -1 ||

document.form1.Email.value.indexOf ('.',0) == -1){

alert("\nDieses Feld benötigt ein @-Zeichen und einen \'.\' " +

"\nBitte korrigieren Sie Ihre eMail-Adresse.")

document.form1.Email.select();

document.form1.Email.focus();

return false;



} else {

return true;

}



var anz=0;

for (num=1; num<=40; num++) {

anz+=parseFloat(document.form1["anz"+num].value);

}

if(anz < 1) {

alert("es wurde nichts bestellt !");

status=false;

}

if(status)status=confirm("Es werden "+anz+" Artikel bestellt.");

return status;

}

//-->

</script>





<link rel="stylesheet" type="text/css" href="body.css">

</head>



<body onload="init();">

<h3 align="center"> <a name="oben"> Online-Shop</a></h3>

<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="550">
<tr>
<td>In unserem Online-Shop können sie ausgewählte Weine per
Knopfdruck bei uns bestellen. <b>Bitte beachten Sie, dass die angegeben
Preise in Schweizer Franken und pro Flasche sind</b>. Geben sie die
gewünschte Anzahl Flaschen ein. 
<p> </p>
<p>Ihr Vorteil: Sie müssen bei uns nicht ganze Gebinde kaufen sondern
können sich auch nur für einzelne Flaschen entscheiden!</td>
</tr>
</table>
</center>
</div>

<p align="center">  </p>

<p align="center">  </p>

<p align="center">  </p>

<form name="form1" action="http://www.datacomm.ch/cgi/mailer.pl" method="POST" onreset="return confirm('Angaben wirklich zurücksetzen ?');" onsubmit="return test()">

<input type="hidden" name="error" value="http://www.schotteclique.ch/fan_formsent_failed.htm"><input type="hidden" name="recipients" value="shopping@schotteclique.ch"><input type="hidden" name="subject" value="Fanartikel-Bestellung"><input type="hidden" name="thanks" value="http://www.schotteclique.ch/fan_formsent_ok.htm">




<div align="center">
<center>




<table border="0" cellspacing="0" cellpadding="0" width="550" class="shop">

<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Piemonte:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>





</center>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>

<center>




<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>

<td height="30" align="right">

</td>

</tr>

<tr>

<td width="40" valign="top"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td>



<p><b>Barbaresco DOCG Donna Nera</b><br>

(Tre Donne)



</td>

<td width="40" align="center">

<font color="#000099">07720</font>

</td>

<td width="40" align="center">

97

</td>

<td width="40" align="center">

6

</td>

<td width="40" align="center">

75

</td>

<td align="center">



<p ><input type="text" name="ein1" size="5" value="29.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td>



<p ><input type="text" name="anz1" size="3" onchange="changed(this);" tabindex="1">



</td>



<td align="right">


<p><input type="text" name="ges1" size="7" onchange="changed(this);" value="0" tabindex="57">


</td>

</tr>



<tr align="center">

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>



<tr>

<td width="40" valign="top"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td>



<p><b>
Logos Langhe DOC</b><br>

(Tre Donne)



</td>

<td width="40" align="center">

<font color="#000099">09640</font>

</td>

<td width="40" align="center">

96

</td>

<td width="40" align="center">

6

</td>

<td width="40" align="center">

75

</td>

<td align="center">



<p ><input type="text" name="ein2" size="5" value="19.90" onchange="changed(this);" style="border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td>



<p ><input type="text" name="anz2" size="3" onchange="changed(this);" tabindex="2">



</td>



<td align="right">



<p><input type="text" name="ges2" size="7" onchange="changed(this);" value="0" tabindex="58">



</td>

</tr>



<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>

<tr>

<td width="40" valign="top"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td>



<p><b>Barbera del Monferrato DOC</b><br>



(Vicara)



</td>

<td width="40" align="center">

<font color="#000099">07870</font>

</td>

<td width="40" align="center">

97

</td>

<td width="40" align="center">

12

</td>

<td width="40" align="center">

75

</td>

<td align="center">



<p ><input type="text" name="ein3" size="5" value="22.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td>



<p ><input type="text" name="anz3" size="3" onchange="changed(this);" tabindex="5">



</td>



<td align="right">



<p><input type="text" name="ges3" size="7" onchange="changed(this);" value="0" tabindex="59">



</td>

</tr>



<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>

<tr>

<td width="40" valign="top"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td>



<p><b>Gavi di Gavi DOCG</b><br>



(Tre Donne)



</td>

<td width="40" align="center">

<font color="#000099">01360</font>

</td>

<td width="40" align="center">

99

</td>

<td width="40" align="center">

6

</td>

<td width="40" align="center">

75

</td>

<td align="center">



<p ><input type="text" name="ein4" size="5" value="17.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td>



<p ><input type="text" name="anz4" size="3" onchange="changed(this);" tabindex="8">



</td>



<td align="right">



<p><input type="text" name="ges4" size="7" onchange="changed(this);" value="0" tabindex="60">



</td>

</tr>



<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Lombardia:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Cabernet della Bergamasca IGT</b>

<p >(Vitivinicola Medolago Albani)</td>

<td height="30" width="40" align="center"><font color="#000099">13200</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein5" size="5" value="19.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz5" size="3" onchange="changed(this);" tabindex="11">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges5" size="7" onchange="changed(this);" value="0" tabindex="61">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Valcalepio DOC</b>

<p >(Vitivinicola Medolago Albani)</td>

<td height="30" width="40" align="center"><font color="#000099">14320</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein6" size="5" value="14.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz6" size="3" onchange="changed(this);" tabindex="12">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges6" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Valcalepio DOC Riserva</b>

<p >(Vitivinicola Medolago Albani)</td>

<td height="30" width="40" align="center"><font color="#000099">14322</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein7" size="5" value="19.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz7" size="3" onchange="changed(this);" tabindex="13">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges7" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Friuli:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Merlot del Friuli DOC</b>

<p >(Az. Agr. Altran)</td>

<td height="30" width="40" align="center"><font color="#000099">17200</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein8" size="5" value="12.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz8" size="3" onchange="changed(this);" tabindex="14">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges8" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Refosco dal Ped. Rosso</b> <b> DOC</b>

<p >(Az. Agr. Altran)</td>

<td height="30" width="40" align="center"><font color="#000099">17210</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein9" size="5" value="12.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz9" size="3" onchange="changed(this);" tabindex="15">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges9" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Tiare Refosco dal Peduncolo  Rosso DOC</b>

<p >(Az. Agr. Altran)</td>

<td height="30" width="40" align="center"><font color="#000099">17220</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein10" size="5" value="18.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz10" size="3" onchange="changed(this);" tabindex="16">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges10" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Pinot Grigio DOC</b>

<p >(Az. Agr. Altran)</td>

<td height="30" width="40" align="center"><font color="#000099">02020</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein11" size="5" value="14.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz11" size="3" onchange="changed(this);" tabindex="17">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges11" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Veneto:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Amarone della Valpolicella DOC</b><p >(Tedeschi)</td>

<td height="30" width="40" align="center"><font color="#000099">20010</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein12" size="5" value="27.00" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz12" size="3" onchange="changed(this);" tabindex="18">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges12" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Valpolicella Classico DOC Superiore</b>

<p >(Tedeschi)</td>

<td height="30" width="40" align="center"><font color="#000099">22850</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein13" size="5" value="10.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz13" size="3" onchange="changed(this);" tabindex="19">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges13" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

</td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Valpolicella Classico DOC Superiore Capitel die
Nicalò</b> (Tedeschi)</td>

<td height="30" width="40" align="center"><font color="#000099">20268</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein14" size="5" value="12.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz14" size="3" onchange="changed(this);" tabindex="20">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges14" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Bianco di Custoza DOC</b>

<p >(Tedeschi)</td>

<td height="30" width="40" align="center"><font color="#000099">02262</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein15" size="5" value="13.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz15" size="3" onchange="changed(this);" tabindex="21">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges15" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Emilia-Romagna:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Lambrusco Amabile DOC</b>

<p >(Cesari s.r.l.)</td>

<td height="30" width="40" align="center"><font color="#000099">24240</font></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein16" size="5" value="10.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz16" size="3" onchange="changed(this);" tabindex="22">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges16" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Liano IGT</b>

<p >(Cesari s.r.l.)</td>

<td height="30" width="40" align="center"><font color="#000099">24320</font></td>

<td height="30" width="40" align="center">98</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein41" size="5" value="20.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz41" size="3" onchange="changed(this);" tabindex="22">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges41" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Sangiovese di Romagna DOC</b>

<p >(Cesari s.r.l.)</td>

<td height="30" width="40" align="center"><font color="#000099">25125</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein17" size="5" value="13.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz17" size="3" onchange="changed(this);" tabindex="23">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges17" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Sangiovese di Romagna DOC Riserva</b>

<p >(Cesari s.r.l.)</td>

<td height="30" width="40" align="center"><font color="#000099">25130</font></td>

<td height="30" width="40" align="center">98</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein18" size="5" value="15.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz18" size="3" onchange="changed(this);" tabindex="24">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges18" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Chardonnay DOC Laurento</b>

<p >(Cesari s.r.l.)</td>

<td height="30" width="40" align="center"><font color="#000099">02680</font></td>

<td height="30" width="40" align="center">98</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein19" size="5" value="19.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz19" size="3" onchange="changed(this);" tabindex="25">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges19" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Trebbiano di Romagna DOC</b>

<p >(Cesari s.r.l.)</td>

<td height="30" width="40" align="center"><font color="#000099">02690</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein20" size="5" value="13.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz20" size="3" onchange="changed(this);" tabindex="26">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges20" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Toscana:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Chianti Classico DOCG Riserva</b>

<p >(Rocca del Macìe SpA)</td>

<td height="30" width="40" align="center"><font color="#000099">27840</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein21" size="5" value="16.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz21" size="3" onchange="changed(this);" tabindex="27">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges21" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Chianti Classico DOCG Riserva Fizzano</b>

<p >(Rocca del Macìe SpA)</td>

<td height="30" width="40" align="center"><font color="#000099">27854</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein22" size="5" value="22.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz22" size="3" onchange="changed(this);" tabindex="28">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges22" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Ser Gioveto Rosso Toscano IGT</b>

<p >(Rocca del Macìe SpA)</td>

<td height="30" width="40" align="center"><font color="#000099">30922</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein23" size="5" value="23.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz23" size="3" onchange="changed(this);" tabindex="29">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges23" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Brunetti Rosso Toscano IGT</b>

<p >(Az. Agr. Elisabetta)</td>

<td height="30" width="40" align="center"><font color="#000099">26400</font></td>

<td height="30" width="40" align="center">98</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein24" size="5" value="25.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz24" size="3" onchange="changed(this);" tabindex="30">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges24" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Vernaccia di San Gimignano DOCG</b>

<p >(Rocca del Macìe SpA)</td>

<td height="30" width="40" align="center"><font color="#000099">02870</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein25" size="5" value="14.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz25" size="3" onchange="changed(this);" tabindex="31">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges25" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Aulo Bianco Toscano IGT</b>

<p >(Az. Agr. Elisabetta)</td>

<td height="30" width="40" align="center"><font color="#000099">02760</font></td>

<td height="30" width="40" align="center">98</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein26" size="5" value="15.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz26" size="3" onchange="changed(this);" tabindex="32">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges26" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Le Marze Bianco Toscano IGT</b>

<p >(Az. Agr. Elisabetta)</td>

<td height="30" width="40" align="center"><font color="#000099">02770</font></td>

<td height="30" width="40" align="center">98</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein27" size="5" value="17.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz27" size="3" onchange="changed(this);" tabindex="33">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges27" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Marche:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Rosso Conero DOC</b>

<p >(Zaccagnini)</td>

<td height="30" width="40" align="center"><font color="#000099">34720</font></td>

<td height="30" width="40" align="center">98</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein28" size="5" value="14.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz28" size="3" onchange="changed(this);" tabindex="34">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges28" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Verdicchio Classico die Castelli di
Jesi DOC</b>

<p >(Zaccagnini)</td>

<td height="30" width="40" align="center"><font color="#000099">03700</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein29" size="5" value="13.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz29" size="3" onchange="changed(this);" tabindex="35">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges29" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Umbria:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Orvieto Classico DOC</b>

<p >(Rocca delle Macìe)</td>

<td height="30" width="40" align="center"><font color="#000099">02920</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein30" size="5" value="14.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz30" size="3" onchange="changed(this);" tabindex="36">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges30" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Lazio:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Frascati Superiore DOC</b>

<p >(Casale Mattia)</td>

<td height="30" width="40" align="center"><font color="#000099">03132</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein31" size="5" value="12.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz31" size="3" onchange="changed(this);" tabindex="37">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges31" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Abruzzo:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Montepulciano d'Abruzzo DOC Orsetto
Oro</b>

<p >(Casal Thaulero)</td>

<td height="30" width="40" align="center"><font color="#000099">36110</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein32" size="5" value="10.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz32" size="3" onchange="changed(this);" tabindex="38">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges32" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Cerasuolo DOC Orsetto Oro</b>

<p >(Casal Thaulero)</td>

<td height="30" width="40" align="center"><font color="#000099">36111</font></td>

<td height="30" width="40" align="center">99</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein33" size="5" value="10.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz33" size="3" onchange="changed(this);" tabindex="39">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges33" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Puglia:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Notarpanaro Rosso Salento IGT</b><br>
(Cosimo Taurino)</td>

<td height="30" width="40" align="center"><font color="#000099">39530</font></td>

<td height="30" width="40" align="center">94</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein34" size="5" value="17.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz34" size="3" onchange="changed(this);" tabindex="40">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges34" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>
Salice Salentino DOC</b>

<p >(Cosimo Taurino)</td>

<td height="30" width="40" align="center"><font color="#000099">40650</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">6</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein35" size="5" value="14.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz35" size="3" onchange="changed(this);" tabindex="41">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges35" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Primitivo del Tarantino IGT</b>

<p >(Vinicola Savese)</td>

<td height="30" width="40" align="center"><font color="#000099">40220</font></td>

<td height="30" width="40" align="center">97</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein36" size="5" value="17.50" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz36" size="3" onchange="changed(this);" tabindex="42">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges36" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Calabria:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p ><b>Cirò DOC Riserva</b>

<p >(Entotria)</td>

<td height="30" width="40" align="center"><font color="#000099">41160</font></td>

<td height="30" width="40" align="center">91</td>

<td height="30" width="40" align="center">12</td>

<td height="30" width="40" align="center">75</td>

<td height="30" align="center"><input type="text" name="ein37" size="5" value="13.90" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz37" size="3" onchange="changed(this);" tabindex="43">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges37" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Sicilia:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p >Wein 1</td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"><input type="text" name="ein38" size="5" value="10.00" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz38" size="3" onchange="changed(this);" tabindex="45">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges38" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p >Wein 2</td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"><input type="text" name="ein39" size="5" value="100.00" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>



</td>

<td height="30"><input type="text" name="anz39" size="3" onchange="changed(this);" tabindex="46">



</td>



<td height="30" align="right">

<p ><input type="text" name="ges39" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td width="40" bgcolor="#C0C0C0" valign="top" height="30"> </td>

<td bgcolor="#C0C0C0" height="30">

<h5>Sardegna:</h5>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<font size="1">

ANr.</font>

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" width="40" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" align="center" height="30">

<img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td bgcolor="#C0C0C0" height="30">

<font size="1">

Anz.</font>

</td>

<td bgcolor="#C0C0C0" align="right" height="30">

<font size="1">Totalpreis</font>

</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>

<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p >Wein 1</td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"><input type="text" name="ein40" size="5" value="30.00" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>
</td>

<td height="30"><input type="text" name="anz40" size="3" onchange="changed(this);" tabindex="47">
</td>

<td> height="30" align="right">

<p ><input type="text" name="ges40" size="7" onchange="changed(this);" value="0">



</td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>
<tr>

<td height="30" valign="top" width="40"><img border="0" src="images/symbol.gif" width="20" height="20">

</td>

<td height="30">

<p >Wein 2</td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"><input type="text" name="ein42" size="5" value="18.00" onchange="changed(this);" style="background-color: #FFFFFF; border-style: solid; border-color: #FFFFFF" readonly>
</td>

<td height="30"><input type="text" name="anz42" size="3" onchange="changed(this);" tabindex="47">
</td>
<td height="30" align="right">

<p ><input type="text" name="ges42" size="7" onchange="changed(this);" value="0">
</td>

</tr>
<tr>

<td height="30" valign="bottom" width="40"></td>

<td height="30" valign="bottom">

<p ><font size="1"><a href="#Bestellangaben">Zu den
Bestellangaben</a></font></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" width="40" align="center" valign="bottom"></td>

<td height="30" align="center" valign="bottom"></td>

<td height="30" valign="bottom"></td>



<td height="30" align="right" valign="bottom">

<p ><font size="1"><a href="#oben">nach oben</a></font></td>

</tr>
<tr>

<td height="30" valign="top" width="40"></td>

<td height="30">

<p ></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" width="40" align="center"></td>

<td height="30" align="center"></td>

<td height="30"></td>



<td height="30" align="right">

<p ></td>

</tr>

<tr>

<td width="40" valign="top"></td>
</center>
<th>

<p>Bestellung Netto
</th>

<center>




<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td align="center">

<p align="right"><b> SFr.</b></p>

</td>

<td> </td>



<td align="right">



<p><b><input type="text" name="total" size="12" onchange="changed(this);" readonly tabindex="56" style="background-color: #C0C0C0; font-size: 10pt; font-family: Arial; font-weight: bold; border-style: solid; border-color: #C0C0C0" value="0.00"></b>



</td>

</tr>



<tr align="center">

<td width="40" valign="top"></td>

<th>Porto und

Verpackung</th>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td align="center">

<p align="right"><b>SFr.</b></td>

<td></td>



<td align="right">

<p><b>+ 4.50</b></td>

</tr>
<tr>

<td width="40" valign="top"></td>

<td></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td align="center"></td>

<td></td>

<td align="right"></td>

</tr>

<tr align="center">

<td width="40" valign="top"></td>

<th>Bestellbetrag

Total</th>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td width="40" align="center"></td>

<td align="center">

<p align="right"><b>SFr.</b></td>

<td></td>
<td align="right">
<p><input type="text" name="total1" size="9" onchange="changed(this);" readonly value="4.50" tabindex="55" style="background-color: #C0C0C0; font-family: Arial; font-size: 12pt; font-weight: bold; border-style: solid; border-color: #C0C0C0"></td>

</tr>
</table>
</center>
</div>
<hr width="580">

<div align="center">
<center>
<table border="0" width="550" cellspacing="0" cellpadding="0">

<tr>
<td colspan="2" height="30">
</td>
</tr>
<tr>
<td colspan="2" height="30">
<h3><b><a name="Bestellangaben">Bestellangaben</a>:</b></h3>

</td>
</tr>
<tr>
<td>
<p>Vorname:   </p>
</td>
<td>
<p><input type="text" name="Vorname" size="31" tabindex="48">*</p>
</td>
</tr>
<tr>
<td>
<p>Name:   </p>
</td>
<td>
<p><input type="text" name="Nachname" size="31" tabindex="49">*</p>
</td>
</tr>
<tr>
<td>
<p>Strasse:   </p>
</td>
<td>
<p><input type="text" name="Strasse" size="31" tabindex="50">*</p>

</td>
</tr>
<tr>
<td>
<p>PLZ / Ort:   </p>
</td>
<td>
<p><input type="text" name="Ort" size="31" tabindex="51">*</p>
</td>
</tr>
<tr>
<td>Land</td>
<td><small><select name="Land" size="1" tabindex="52">

<option selected value="-">---- Bitte auswählen ----</option>

<option value="CH">Schweiz</option>

<option value="LI">Liechtenstein</option>

<option value="DE">Deutschland</option>

<option value="AT">Österreich</option>

<option value="ZZ">Anderes (nicht angezeigt)</option>
</select></small><big>*</big></td>
</tr>
<tr>
<td height="30"></td>
<td height="30"></td>
</tr>
<tr>
<td>
<p>E-Mail:   </p>
</td>
<td>
<p><input name="Email" size="31" tabindex="53">*</p>
</td>
</tr>
<tr>
<td height="30"></td>
<td height="30"></td>
</tr>
<tr>
<td colspan="2" height="30">
<font color="#000000">Felder mit *
müssen ausgefüllt werden.</font>
</td>
</tr>
<tr>
<td colspan="2" height="30">
<p><font color="#000000"><input type="checkbox" name="Bestellbedingungen gelesen" value="ON" checked>

Ich habe die <a href="informationen.htm#Liefer- und Zahlungsbedingungen" target="_blank"> Bestellbedingungen</a> gelesen und bin damit einverstanden</font></p>
</td>
</tr>
<tr>
<td colspan="2" height="30">
</td>
</tr>
<tr>
<td colspan="2" height="30">
<font face="Arial">
<input type="submit" value="Bestellung abschicken" tabindex="54"></font><font face="Times New Roman"><input type="reset" value="Formular löschen" tabindex="55"></font>
</td>
</tr>
</table>
</center>
</div>
</form>
</body>
</html>
 
Zurück
Oben