var fDesc=new Array();
fDesc[2] = "AbsoluteTelnet the edge, along with SOCKS Proxy, session logging, Passthru printing, Color/Font settings, and a host of terminal options.";
fDesc[3] = "different alert sign for each caller, Hidden Service, flags and priority for each call.. and much more... try it!";
fDesc[4] = "of phone calls - all with just a click of your mouse.";
fDesc[5] = "all sizes, fully customizable. Configurable fields with masking for fields such as postal codes, phone format, last call, last email, last update. Performs addressvalidation. Comes with postal tables for US Austrialia, Thialand and Brazil. Also comes with address and emailaddress for US Senate and Congress, or at least forthose brave enough to maintain one.";
fDesc[6] = "not be boring so the user does not need to wait for the fax to arrive and manually take care of it, to either store it or print it. The application works with TAPI Fax modems for automatically printing and saving of incoming fax calls.";
fDesc[7] = "other information in multiple phone books and dial using a standard modem. Auto-redial busy numbers and log incoming or out...";
fDesc[8] = "multiple greetings, message forwarding, and remote access with timestamps. Organize names, numbers, addresses, and ...";
fDesc[9] = "page tabs as needed (e.g. a page for personal contacts, a page for business contacts or even a page just for extra telephone numbers). Organize contacts with index keys, and group them into an unlimited number of categories. Associate an unlimited number of documents with any contact; simply click the required document to view, edit or print it. Or associate Internet URLs. Support for E-Mail addreses with direct links to an E-Mail client.Create reminders with alarms to remind you of approaching events (birthdays, invoices due), and attach notes. Print avariety of listings and reports, plus envelopes, address labels, and more. Export and import entries to and from textfiles. Use the Calendar View, to consolidate reminders from all opened Address Books and events from all openedDiaries. Also features powerful search capabilities, automatic dialing of telephone numbers (via TAPI)...";
fDesc[10] = "stores. Requires a TAPI compliant voice modem or telephony card.";
fDesc[11] = "your applications.";
fDesc[12] = "device, or your LAN/WAN when used with CallAudit Server. These include screen-pops, report generation, speaker phone support, customizable sound announce, alphanumeric paging support, programmable alarms, call notification via e-mail, DDE support with ACT, Microsoft Access and others, call notes, and an integrated phone book. CallAudit Client supports the TAPI standard, allowing it to work in conjunction with other TAPI compliant software packages. CallAudit Client can be used with CallAudit Server to distribute Caller ID data across a PC network.";
fDesc[13] = "powerful way. Add telephony functions to your application...and enable it to make and answer voice or data calls, detect caller IDs, receive and generate DTMF tones, read/set the display of a phone, control the hookswitch devices and many more.The Telephony API (TAPI) is one of the most complex APIs of Microsoft Windows. hbTapi Components abstracts the API to some Delphi components which can be easily controlled by your application. hbTapi Components works through Microsoft's Telephony API to provide hardware-independence, this makes it easy to work with telephony devices from many manufacturers. It can be used with all TAPI compliant telephony hardware: low cost modems, ISDN adapters, professional telephony cards and switches etc.An applicated developed using hbTapi Components is applicable to all Windows 32-bit operating systems with TAPI Version 2.1 or higher installed: Win95 (TAPI...";
fDesc[14] = "tremendous range of features and tight integration with Caller ID. Features include, Custom greeting messages for specific callers, Separate greeting message for blocked calls, Send calls from selected callers directly to voice mail, Support for two 2 telephone lines, Option to have all calls appears in Microsoft Exchange or other MAPI mail system, VoiceBroadcasting, record incoming calls, Speaker Phonecapabilities, forward voice messages to a separate telephone number, send alphanumeric/number pages basedon incoming voice messages, and Option to forwardreceived voice messages via E-Mail. REQUIRES: Windows95/98; Voice capable MODEM that supports the MicrosoftTAPI standard or TAPI compliant voice card; MODEM INFfile tailored for TAPI use; Microsoft UniModemV TAPI MODEM driver; Sound card, microphone, and speakers.";
fDesc[15] = "control enables the addition of telephone dialing to any application with ease.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}