function buyItem(newItem, newPrice, newQuantity , price1, price2, qty1, qty2 , Attribut0, Attribut1, Attribut2, Attribut3, productvatrate)
{
newItem = unescape(newItem);
var index=-1;
parent.nachn=Attribut0;
if (! Attribut0) {Attribut0=""};
if (! Attribut1) {Attribut1=""};
if (! Attribut2) {Attribut2=""};
if (! Attribut3) {Attribut3=""};
if (! price1)    {price1="0"};
if (! price2)    {price2="0"};
if (! qty1)      {qty1="0"};
if (! qty2)      {qty2="0"};
//if (! textin)    {textin=""};
if (!( (parseFloat(newQuantity) == parseInt(newQuantity) )&&( parseInt(newQuantity) > 0) ) || isNaN(newQuantity))
alert(Loc_Integer);
else
{
if(Attribut1.substr(Attribut1.length-1,1)=='?')
alert('Bitte aus '+ Attribut1.substr(0,Attribut1.length-1)+' auswählen, danach Bestellvorgang wiederholen!');
else
{
if(Attribut2.substr(Attribut2.length-1,1)=='?')
alert('Bitte aus '+ Attribut2.substr(0,Attribut2.length-1)+' auswählen, danach Bestellvorgang wiederholen!');
else
{
if(Attribut3.substr(Attribut3.length-1,1)=='?')
alert('Bitte aus '+ Attribut3.substr(0,Attribut3.length-1)+' auswählen, danach Bestellvorgang wiederholen!');
else
{
if(newQuantity+' x '+newItem+' in den Warenkorb legen?')
{
for (var i=1; i<= theBasket.length-1; i++)
{
if ((theBasket[i].Attribut0==Attribut0)&&(theBasket[i].Item==newItem)&&(theBasket[i].Attribut1==Attribut1)&&(theBasket[i].Attribut2==Attribut2)&&(theBasket[i].Attribut3==Attribut3))
{
if (window.confirm(Loc_Add))
if((parseInt(theBasket[i].Quantity)+parseInt(newQuantity)) > 9999) {
alert("Die maximale Bestellmenge ist 9999!");
theBasket[i].Quantity = 9999;
}
else{
theBasket[i].Quantity=parseInt(theBasket[i].Quantity)+parseInt(newQuantity);
SetCookie("basket"+i, theBasket[i].all+"®");
document.location = "buy2.htm";}
else
if (parseInt(newQuantity) > 9999)
{
alert("Die maximale Bestellmenge ist 9999!");
newQuantity = '9999';
}
else
theBasket[i].Quantity=newQuantity;
// theBasket[i].Textin=textin;
index=i;
}
}
if (index<0)                                         {
if (parseInt(newQuantity) > 9999)
{
alert("Die maximale Bestellmenge ist 9999!");
newQuantity = '9999';
}
var neuItem=new BasketItem(newItem,newPrice,price1,price2,qty1,qty2,newQuantity,Attribut0, Attribut1, Attribut2, Attribut3, productvatrate);
theBasket=theBasket.concat([neuItem]);
SetCookie("basketlength", theBasket.length);
//alert("basketlength nach concat"+ theBasket.length);
//alert("buyitem 0 Länge "+theBasket.length+" A1 "+theBasket[0].Attribut1+" A2 "+theBasket[0].Attribut2+" A3 "+theBasket[0].Attribut3+" Qty  "+theBasket[0].Quantity);
//alert("buyitem 1 Länge "+theBasket.length+" A1 "+theBasket[1].Attribut1+" A2 "+theBasket[1].Attribut2+" A3 "+theBasket[1].Attribut3+" Qty  "+theBasket[1].Quantity);
//alert("buyitem 2 Länge "+theBasket.length+" A1 "+theBasket[2].Attribut1+" A2 "+theBasket[2].Attribut2+" A3 "+theBasket[2].Attribut3+" Qty  "+theBasket[2].Quantity);
}
}
//alert("ab nach Buy2  "+theBasket[i].all);
SetCookie("basket"+i, theBasket[i].all+"®");
SetCookie("basketlength", theBasket.length);
document.location = "buy2.htm";
}
//alert(" Buyitem basketlengthööööööööööööö= "+theBasket.length);

}
}
}
}

