function showItemsneu() {
var tablerowcolor = '#F0F0F0';
var aPrices = new Array();
var aFromQuants = new Array();
var aToQuants = new Array();
totprice = 0;
totvat = 0;
if(parent.theBasket.length>1) {
for(var i = 1; i < parent.theBasket.length; i++) {
with(parent.theBasket[i]) {
if(weight == 0.00) {
theitem = Item+' '+ VariantDescription;

} else {
theitem = Item+' '+ VariantDescription+' '+weight+ ' ';
}

itemtotal = 0;
thequantity = Quantity;
iNumberPrices = parseInt(NumberPrices);
aPrices = Prices.split(":");
aFromQuants = FromQuants.split(":");
aToQuants = ToQuants.split(":");
for(var j=1;j<iNumberPrices;j++) {
if(( parseInt(Quantity) < parseInt(aToQuants[j-1])) && (parseInt(Quantity) >= parseInt(aFromQuants[j-1]))) {
theprice = aPrices[j-1];
}
}
if(parseInt(Quantity) >= parseInt(aToQuants[iNumberPrices-1])) {
theprice=aPrices[iNumberPrices-1];
}
itemtotal = (eval(theprice*thequantity));
temptotal = itemtotal * 100;
totprice = totprice + itemtotal;
thisvat = (parseFloat(itemtotal*productvatrate)) / (parseFloat(productvatrate)+parseFloat(100));
thisvat = parseFloat(parent.alterError(thisvat));
totvat = totvat + thisvat;
if(Attribut1 == '') A1 = ''; else A1 = ', '+Attribut1;
if(Attribut2 == '') A2 = ''; else A2 = ', '+Attribut2;
if(Attribut3 == '') A3 = ''; else A3 = ', '+Attribut3;
itemlist = i;
hilf = "";
if(Textin != "") {
hilf="<br> "+Textin;
}
document.write('<tr valign="top"><td width="30%"><INPUT TYPE="TEXT" readonly NAME="Posten'+itemlist+'" VALUE="'+thequantity+'" SIZE="1"> x '+parent.alterError(theprice)+'</td>');
document.write('<td width="70%" valign="top">'+theitem+A1+A2+A3+hilf+'<br><b>'+parent.Loc_PriceTotal+'</b> '+parent.alterError(itemtotal)+' <a href="javascript:removeItem('+itemlist+')"><img src="x.gif" width="8" height="8" border="0" alt="Entfernen"></a></td></tr>');
if(tablerowcolor == '#F0F0F0') {
tablerowcolor = "#F8F8F8";
} else {
tablerowcolor = "#F0F0F0";
}
}
}



}
else
{
document.writeln('<tr><td colspan="2" align="right">keine Artikel im Warenkorb</td></tr>');
}
document.writeln('<tr><td colspan="2" align="right"><hr></td></tr>');
document.writeln('<tr BGCOLOR="#f2ddb5"><td>'+parent.Loc_Total+'</td><td align=right>EUR '+parent.alterError(totprice)+'</td></tr>');

document.writeln('<tr><td colspan="2" align="right"><input style="cursor:hand;" type="button" value="Bestellformular" onClick="pruef()" class="bestellen"></td></tr>');

}