function AddToCart() { } function RemoveFromCart() { } function ManageCart() { var strOutput = "

" + "" + "" + "" + "" + ""; strOutput += "
QtyItemPrice
Your cart is empty
"; 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(); }