var fDesc=new Array();
fDesc[1] = "Firefox 3. This changes were made to improve stability and web compatibility, provide user interface enhancements, and speed. Firefox 3 now includes support to resume downloads, and a better download manager. Its general appearance has been slightly improved, with some new icons.";
fDesc[3] = "track your bank accounts, stocks, income and expenses. Are you going to buy a vehicle or a new house? GnuCash will help you plan the investment and track loan payments. With GnuCash you can also keep track of your checkbook.";
fDesc[4] = "with minimal efforts and is capable of doing virtually all the web-related operations. It features a range of capabilities such as Drag-and-Drop, PayPal shopping carts, and it supports all Windows operating system including Vista, IE 7, along with Flash Slide shows, Text FX and more.";
fDesc[5] = "the most popular forms of payment - Paypal. With this program you will be able to create your online shop without knowing how to integrate PayPal.";
fDesc[6] = "Keep payments secure with PayPal secure encrypted buttons. Generate large batches in seconds with batch processing. Pays for itself.";
fDesc[7] = "Generates Encrypted Website Payment Buttons on the fly. OOP Interface for buttons BuyNow, Donation, Shopping Cart, Subscriptions, IPN & PDT";
fDesc[8] = "intervals. When new PayPal payments arrives, there is a notification mail sent to your mailbox from PayPal.";
fDesc[9] = "online to make your buttons. You can make every type of button whether they are single item, cart, or subscriptions. All field";
fDesc[10] = ", Amazon, eGold and hundreds of other financial institutions.";
fDesc[11] = "front lines of the fight against phishing, to reel in Online scammers ,So you can protect your personal or financial account.";
fDesc[13] = "information for your products";
fDesc[15] = "information. The added bonus is that it supplies the code necessary for all the options that Paypal offers such as a cancel";
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 = '...';
}
}