function storageDeleteMarkedItems() {
	loadHtmlWithForm("/profile/storage/delete_marked_items", "storage",
    	function(result) {
			window.location.href="/profile/storage/show_storage";
    	}
    );
}

function moveToCart() {
	console.log("moveToCart");
	loadHtmlWithForm("/profile/storage/move_items_to_cart", "storage",
    	function(result) {
			window.location.href="/profile/storage/show_storage";
    	}
    );
}

function recomputeStorage(frm) {
	console.log("recomputeStorage");
    if (frm.isValid()) {
        loadHtmlWithForm("/profile/storage/recompute_storage", frm.name,
        	function(result) {
        		window.location.href="/profile/storage/show_storage";
        	}
        );
    } else {
        alert("Na stronie są błędy, proszę poprawić");
    }
}

