var fDesc=new Array();
fDesc[1] = "compatibility and also offers support to HTML, DHTML, JPEG and PNG graphics, JavaScript, animations, images, VBScript, and most of the Internet Explorer plug-ins.";
fDesc[2] = "navigation, charts, open database format. View statistics changing over time, compare reports for different intervals. Create custom reports.";
fDesc[3] = "requirements, built-in IP mapping, unique filtering capabilities and more. Fast, powerful and professional.";
fDesc[6] = "Receivable,Patient Statements [Regular & PI,] Insurance Aging,Patient Analysis,Practice Analysis,Transaction Analysis,Patient Labels,Form Editor [CMS 1500],";
fDesc[7] = ", Referral Site or directly which can be improve your e-marketing campaign analysis.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}