function BasketItem(Item,Price,Quantity,productvatrate,Shipment)
{
        this.Item=Item;
        this.Price=Price;
        this.Quantity=Quantity;
        this.productvatrate=productvatrate;
        this.Shipment=Shipment;
}

theBasket = [new BasketItem("","","","","")];
var co="";
