var fDesc=new Array();
fDesc[0] = "Phone Plus is an advanced telephone dialer and contact manager with full Caller ID support. It also has support for speakerphone operation. The Caller ID features are optional, and require a modem with Caller ID capability.
You can organize names, numbers, addresses, and other information in multiple user-defined phone books, and dial using a standard Data/Fax modem. Phone Plus is integrated with the Windows Dialing Properties.";
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 = '';
}
}