function AddToCart() { }
function RemoveFromCart() { }
function ManageCart() {
var strOutput = "
" +
"" +
"| Qty | " +
"Item | " +
"Price | " +
"
";
var strremove = "http://www.bikeregistrycanada.com/removeitem.cgi?service=61&group=0";
strOutput += "| 1 | ";
strOutput += " | Can$ 10.00 | ";
strOutput += "
";
strOutput += "TOTAL: | ";
strOutput += "Can$ 10.00 | ";
strOutput += "
";
strOutput += "";
document.write(strOutput);
document.close();
}
function cartTotals() {
strOutput1 = "1 Item (Can$ 10.00)";
document.write(strOutput1);
document.close();
}
function cartQtys() {
strOutput1 = "1 Item";
document.write(strOutput1);
document.close();
}