function AddToCart() { }
function RemoveFromCart() { }
function ManageCart() {
var strOutput = "
" +
"" +
"| Cantidad | " +
"Articulo | " +
"Precio | " +
"
";
strOutput += "| 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();
}