var fDesc=new Array();
fDesc[0] = "Keeping accurate and up to date information on your customers is vital for any smart business owner, and ROCKET helps you to do this.
Features:
- Unlimited details kept on each member
- Email address and mobile number kept for easy retrieval and marketing
- Up to five member photos can be captured for added security using the optional PHOTOCHEK Member ID plug-in module
- Transaction photos taken at counter and stored until debts are paid using the optional PHOTOCHEK Transaction ID plug-in module
- Parental restriction of children’s rentals
- Full contact database, including staff & suppliers
- Keeps history of each customer’s hires and sales; can be reported in both financial and graph form
- Easy-to-use suite of member marketing reports
- Additional report generator for more complex member reporting
- All reports to paper, mail merge, CSV or HTML";
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 = '';
}
}