var fDesc=new Array();
fDesc[1] = "like customs buttons with gadget support, new tab page to access a new page, quick search box to navigate your web search faster, synchronized toolbar setting to access your information from any computer, and improved auto fill that allows you to have several profiles information.";
fDesc[2] = "developers, including Atari, Popcap and WildTangent Studios. WildCoins are a payment system you can use to play WildGames. They work like quarters in an arcade.";
fDesc[3] = "the features of a professional CD/DVD/Blu-ray burner. You can create DVD-video disc, mp3 DVD and DVD images using BurnAware Free.";
fDesc[4] = "session on a computer, over a network. PuTTY implements the client end of that session: the end at which the session is displayed, rather than the end at which it runs.";
fDesc[5] = "easy and friendly with many features included to develop all your ideas and projects clearly in order or simply to order a brainstorm session. Freemind works in almost every platform that runs Java.";
fDesc[6] = "tool for shutting down Windows based computers at a given time. We can select the way we want the computer to be shut down.";
fDesc[7] = "techs to take control of customer computer through a broadband internet connection. The most significant feature in version 1.1 is the reconnect after reboot functionality, which allows the session to resume without requiring a new session to be started.";
fDesc[8] = "called brainwave entrainment. You can sit through and experience specific sessions, each designed to stimulate a specific brainwave pattern, thereby bringing about a long-lasting change.";
fDesc[9] = "professional level. NetOp Remote Control is composed by two modules: Host and Guest. The computer with the Host module installed is the one being visited or controlled by the computer with the Guest module installed.";
fDesc[10] = "level. NetOp Remote Control is composed by two modules: Host and Guest. The computer with the Host module installed is the one being visited or controlled by the computer with the Guest module installed.";
fDesc[11] = "Most of the internet users are sending emails regularly but they send their emails in simple plain text which is totally porn to everyone and anybody can read or edit your email. This could be harmful for you in one or more cases.";
fDesc[13] = "customized session with powerful psycho-acoustic sound tracks. Listen to the session from within SHARM, or generate a sound file to be played later.";
fDesc[14] = "protocol. SecureCRT has advanced session management features, a multi-session tabbed interface, scripting, and numerous emulations.";
fDesc[15] = "maintenance of the account such as delete spam or undesirable messages without entering to the POP email client.";
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 = '...';
}
}