/* function for front end adding/removing/etc items from a cart */
function doAction(action, key) 
{
        document.brokerform.action.value=action;
        document.brokerform.part_id.value=key;
        document.brokerform.submit();
}

