var fDesc=new Array();
fDesc[0] = "The Quick Silver Cashflow Software is a spreadsheet based application.
Features:
- Ideal for project based companies where income and outgoings tend to be 'lumpy' and dependent on winning contracts.
- Allows up to 120 different live/quoted projects. Summaries of different contract winning scenarios are then just a menu item and dialogue box away!
- Around 20 years worth of data can be held. History can be purged, retaining the previous 12 months, thus enabling continuous further operation.
- Single button click to shift a single project left or right a month at a time.";
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 = '';
}
}