function AddToCart() { } function RemoveFromCart() { } function ManageCart() { var strOutput = "" + "" + "" + "" + "" + ""; strOutput += "
CantidadArticuloPrecio
Su cesta está vacía
"; document.write(strOutput); document.close(); } function cartTotals() { strOutput1 = "0 Items (€ 0.00)"; document.write(strOutput1); document.close(); } function cartQtys() { strOutput1 = "0 Items"; document.write(strOutput1); document.close(); }