var fDesc=new Array();
fDesc[0] = "VersaCheck DNA Secure X1 - Platinum is an ultra-secure platform for creation and delivery of highly secure and safeguarded paper checks.
This software offers counterfeit prevention, financial account protection, real-time deposit alerts and avoidance of credit card finance charges.
Main Features:
- Protect Your Accounts & Receive Activity Alerts
- Manage finances
- Create and print BUSINESS & PERSONAL checks
- Create and Print or e-mail Estimates & Invoices
- Create Business Cards, Badges & Labels
- Supports single user or up to 5 simultaneous users
- 150 Blank Checks and Deposit Slips Included.";
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 = '';
}
}