var fDesc=new Array(); fDesc[0] = "PhoneBook - It is the electronic address book.
Address book can be used for storage of the information about your familiar,
friends, corporations, etc.
Main possibilities:
- Storage Name, Surname, birthday, the address, home and working phones, number
of a pager, a photo, email, numbers ICQ and addresses of a homepage on the
Internet, and as notes;
- Allocation of abonents on groups;
- Realization of search on all base;
- Export the data of book to text file;
- Warning about coming nearer birthday;
- Operation with the modem, i.e. realization of dialup and a call-back;
- Support of recording of outgoing bells."; 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 = ''; } }