var fDesc=new Array();
fDesc[0] = "OfficeMan is a Complete Office Activity Solution.
Main Features:
- Creation of Employees data with personal information, Joining Date, Position, Attach Photo etc.
- Login ID Creation for employees with their rights for s/w functionality.
- Creation of Client Master Database with personal information, Address (Office, Residence), Contact Details (for future SMS, E-mail purpose, Web Site Address List for direct access the information of client), Group wise also.";
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 = '';
}
}