var fDesc=new Array();
fDesc[0] = "-Seamless Windows integration: Tight integration with Windows Applications such as MS-Office, Internet Explorer, Acrobat Reader, email clients. Copy and Paste or Drag and Drop from applications to DocumentHub.
-Internet support: Built-in support for popular Internet file formats. Documents from Internet Explorer can keep its format, color, hyper-link and other attributes
-Data backup/restore: Provide data backup/restore functions, you can keep up to 4 backups and restore them when needed to decrease the risk of database crash
-Auto New Version Check: Auto check latest software update or new released version, you will never miss any software update.
-Export and Print:Export selected document to a stand-along file for future use or print them out for filing.
-Convenience Editor: User can re-format and edit the documents in database, add new data, delete redundant information, arrange the format and more.";
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 = '';
}
}