var fDesc=new Array();
fDesc[0] = "IntegriSign Desktop is Interlink Electronics standard
esignature software which comes bundled with every member of the ePad family of signature capture devices.
Although IntegriSign Desktop works out-of-the-box with Microsoft Word®, Excel® and Outlook® as well as Adobe® Acrobat®, the SDK can be utilized to develop custom applications that meet your organization’s particular needs.";
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 = '';
}
}