var fDesc=new Array();
fDesc[0] = "InstaClaim makes claims processing easier.
This easy-to-use program simplifies the whole process of completing a claim form. You will save time. The patient and insurer's information is saved for future billings to save time re-entering the same data.
Main Features:
- Enhanced encryption - AES 256 encryption for super tight security.
- Quick and easy data entry, logically organized
- Patient information is saved for future claims Enter your practice information just once
- Easily reprint claims
- Print a sample form to check printer alignment
- Fast keys allows function access without your fingers leaving the keyboard";
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 = '';
}
}