var fDesc=new Array();
fDesc[0] = "Efficient Address Book is a contact and customer information management app.
Main features:
- Easy to sync data across PCs and mobile phones.
- Create groups without limitation for management.
- Import Excel & CSV Files, support print function.
- Search and find out info fast and easily.
- Add attachments & pictures.";
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 = '';
}
}