var fDesc=new Array();
fDesc[1] = "files you send, and will send to the recipient a direct download link to those files. In order to use the service, you will need to open an account with the service.";
fDesc[2] = "once. The program has the ability to send HTML or plain text messages, and even add attachments very easily. You can send emails directly to the recipient, using an SMTP mail server, or using a MAPI client.";
fDesc[3] = "2000/XP/2003/Vista. Program can back up ?My Documents?, MS Outlook, The Bat, ICQ, Registry, Desktop items.";
fDesc[4] = "mini-databases of customer information and export it into your Palm organizer or your favorite contact management program. With Select Phone you can print prospect information onto labels, data sheets and envelopes.";
fDesc[5] = ", subscribers and friends. You are also be able to manage mailing lists with our handy tool.";
fDesc[6] = ", invoiceit! is an all-in-one professional accounting and invoicing solution with more features for your money. Features include cashbook finances, invoicing, quotations, automatic invoicing for regular sales, inventory/stock control, client and vendor tracker, reports, illustrated price, multi-person diary, email, integrated direct mail module (for example: write to clients who have bought certain products in the past) and highly customizable stationery - your invoices look exactly as you want them to. Payment receipts are automatically cross-posted to accounts.";
fDesc[9] = "mail client but it has a built-in SMTP server which can be quickly setup for use with your favorite mail client.";
fDesc[11] = "complete system for managing your company billing, stock, customers. Make quotes recurring invoices as well as statistics.";
fDesc[12] = "level. EZ Small Business Software is a complete business management program perfect for companies who take sales by the Internet or phone.";
fDesc[13] = "easy to use e-mail marketing tool. Sends messages in plain text format or HTML.";
fDesc[14] = "cost-effective solution works fine both for commercial mailings and usual e-mails. ADM makes sending e-mail more enjoyable.";
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 = '...';
}
}