var fDesc=new Array();
fDesc[0] = "Phone Lister is an application for managing contact lists.
Phone Lister is ideal for those companies that want to move beyond their existing labour intensive low-tech contact list management.
The program provides hot keys that allows fast searching of the phone list and a phone list with pictures also is provided.
The tool saves time by using a sophisticated contact list database instead of a simple Word document or spreadsheet and allows you to build your own phone list reports to suit your needs.";
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 = '';
}
}