var fDesc=new Array();
fDesc[0] = "Kaldeera ScanIN allows you to scan your documents from wherever you are to SharePoint libraries or lists, and without having to deploy client applications on its computers. In a simple and effective way, in a user-friendly environment for your internal users.
Organizations are in constant search to reduce costs, and this usually has a very significant environmental impact and can significantly reduce paper use, increasing productivity and response times, achieving high levels of security and transparency in a single project.
Main Features:
- Cost Savings
- Information at your fingertips
- Go green!
- Increased effectiveness
- Eliminate duplicates";
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 = '';
}
}