var qtyItemsInCart = 0; var totalAmountInCart = 0; function AddToCart() { } function RemoveFromCart() { } function ManageCart() { var strOutput = "
" + "" + "" + "" + "" + ""; strOutput += "
QtyItemPrice
Your cart is empty
"; document.write(strOutput); document.close(); } function cartTotals() { strOutput1 = "
0 Items (MK 0.00)
"; document.write(strOutput1); document.close(); } function onlyValues() { qtyItemsInCart = 0; var totalAmountInCart = "0.00"; } function cartQtys() { strOutput1 = "
0 Items
"; document.write(strOutput1); document.close(); } function ImageCart() { var strOutput2 = ''; document.write(strOutput2); document.close(); }