function deleteRow(id) { if(confirm("Kas kustutada rida?")) { document.location = "?deleterow=" + id; } } function emptyOrder() { if(confirm("Kas tühistada tellimuse?")) { document.location = "?empty=1"; } } function saveOrder() { document.getElementById("cartFormSave").value = "1"; document.getElementById("cartForm").submit(); } function startCheckout() { try { document.getElementById("cartFormCheckout").value = "1"; document.getElementById("cartForm").submit(); } catch(e){} } function checkout() { document.getElementById("cartForm").action = "/checkout/?save=1"; document.getElementById("cartForm").submit(); } function previewOrder() { try { document.getElementById("cartForm").submit(); } catch(e){alert(e.message);} } function sendOrder() { document.location = "/sendorder/"; } function gotoCart() { document.location = "/cart/"; }