page = {

	del: function(srvId) {
		if ( dom.confirm("Are you sure you want to remove this service from the shopping cart?") ) {
			nav("?action=del&id="+srvId);
		}
	},

	srvClear: function() {
		if ( dom.confirm("Are you sure you want to remove all services from the shopping cart?") ) {
			nav("?action=clear");
		}
	},

	srvDetails: function(srvId) {
		ajax.load("?action=info&item_id=" + srvId, "cart_item", "Loading more information about this service.");
	}

};