var fDesc=new Array();
fDesc[1] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
fDesc[2] = "it feels and works absolutely great. There are many features that make this application a nice addition to Windows Live Messenger. The first of them is Action Text. Since Windows Messenger 8.0, new text messages have been added.";
fDesc[3] = "enterprise. You will be able to build your Accounting Plan, defining the name of the accounts you will be using, its type, tax charge and initial balance. You can register your bank account's transactions, register your sales, print out or email invoices and more.";
fDesc[4] = "thing the operative system does is to mark the space occupied by the file as available. If the file contains sensitive information you would like to know that this information is unavailable for others.";
fDesc[5] = "information, such as logins, passwords, bank account info, PIN codes and things like these. This information will be stored in \"cards\" that the program will keep with all the related info for a given entry.";
fDesc[6] = "other purpose, you need a passport-size photo for each task. Passport Photo is designed to meet this requirement. This easy-to-use software helps you to create passport photos for printing in just a few minutes.";
fDesc[7] = "logon passwords * Credit card numbers and PIN details * Personal Contact details * Bank Account Details & many more!!";
fDesc[8] = "deleted files is the first place someone with computer knowledge looks for information to break your passwords, email or even your bank account data. You can download a free evaluation trial fully functional for 10 days.";
fDesc[9] = "login names, user names, alias, etc. and auto-fills all the forms when enter a log-in page, or when paying or shopping over the Web. All the sensible information and data are protected by means of 128-bit AES encryption process and saved on the user PC.";
fDesc[10] = "beautiful pictures or funny animations. It is a complete money transactions tool to help you stay organized and to save you a lot of trips to the bank. You can connect to any wireless online bank account.";
fDesc[11] = "students at 'Hell School', or go on a hacking rampage around the internet!";
fDesc[12] = "single, secure location.";
fDesc[13] = "to mid-size property owners and comes with a unique lease agreement organizer feature. The software is brainlessly simple and very easy to operate. The interface is cleverly designed to help landlords have important information readily available. With simple searching/sorting options, several different Wizards and a Recycle Bin, RentBoss easily handles records for multiple properties and apartment complexes. The Program Tenant module contains renter data - name, address, SSN, property occupied, rent paid, family members/other occupants, photos, history of requests/complains and notes. The Building module holds information about rental units - location, rent, size, current status, photos, etc. This module contains a Building Wizard that makes adding a new property fast and easy, which is very important for managers with multiple units to run. Income and Expenses modules do exactly what...";
fDesc[14] = "online account like PayPal, eBay, Citibank and HSBC.";
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 = '...';
}
}