var fDesc=new Array();
fDesc[0] = "DriveShip includes easy customized SW functions with state of art technology and control complete Bookkeeping, Accounting, and Financial Management. DriveShip Build-in functions setups the required tools to permit clients immediate start working on the A&F activities.
Main Features:
- Arabic & English language support
- User’s friendly module build in a way , which required all most no accounting knowledge
- Multi browser support
- Exportable reports in Excel and PDF format.";
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 = '';
}
}