function AddToCart() { }
function RemoveFromCart() { }
function ManageCart() {
var strOutput = "
" +
"" +
"Qty | " +
"Item | " +
"Price | " +
"
";
strOutput += "Your cart is empty |
";
document.write(strOutput);
document.close();
}
function cartTotals() {
strOutput1 = "";
document.write(strOutput1);
document.close();
}
function cartQtys() {
strOutput1 = "";
document.write(strOutput1);
document.close();
}