var fDesc=new Array();
fDesc[0] = "JetPay Virtual Terminal provides retail, restaurant, mail/phone order or Internet merchants with both real-time and batch payment transaction processing of Visa, MasterCard, American Express, Discover, Diners, and JCB cards. JetPay Virtual Terminal is 100% PCI-DSS Compliant. In addition to credit card processing, Virtual Terminal can also handle your ACH transactions.
Features:
- Customized user-defined fields for capture of non-standard data.
- AVS and CVV2/CVC2/CID processing.
- Connection diagnostic utility.
- Application & transaction password protection.
- Supports multiple merchant accounts.
- Assignable user-friendly aliases to terminal ID's.
- Generates transaction receipts and reports on your Windows printer.";
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 = '';
}
}