function doCart(action, id) {
    cartWindowHandle =
        window.open(
            "/telig-c/nav.cart?action=" + action + "&id=" + escape(id),
            "cartWindow",
            "width=740, height=540, scrollbars=yes, menubar=no, location=no, hotkeys=no");
    cartWindowHandle.focus();
}
