var fDesc=new Array(); fDesc[0] = "All Bills Considered is a freeware program for reconciliation of expenses incurred by several parties at different times and in different amounts. Typical uses are:
- A group of co-workers went to a restaurant; all ordered different entries and drinks, paid different amounts. Who owes whom and how much?
- Two or more roommates participated in paying common bills in various proportions. What is the bottom line for each of them?
- Several people (singles, couples) went on vacation together. Once back, who should write a check to whom and for how much?
The program supports saving and loading expense sheets, calculations of total expenses per item and per participant, as well as calculations of the amounts that participants owe to each other. It takes into account non-equal participation in expenses (e.g. two single persons and a couple at a restaurant). Calculation results can also be printed and exported to a Tab-delimited text file. This software is available as is. Solidus Integration makes no warranty of any kind, express or implied, with respect to the performance of this software, and specifically makes no warranty that said software shall be fit for any particular purpose. The user assumes all risk and liability for loss, damage, claims or expense resulting from using this software."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }