var fDesc=new Array();
fDesc[1] = "(Rich Site Summary) feeds and useful shortcuts like people search, maps search, ICQ Chat rooms, ICQ Groups, ICQ Greetings, increase or decrease zoom.";
fDesc[2] = "included in this edition with characters from the real world, new civilizations to accompany them, and new features, this game was published by Microsoft Game Studios.";
fDesc[3] = "present are caused by spyware and processes that are not supposed to be running and actually are. For example, they say that if you can't connect to a wireless network outside of home, it must probably be spyware.";
fDesc[5] = "long list of keywords is very easy. You can sort your keywords in ascending or descending order. You can optimize your keywords list by removing unwanted words occur anywhere in the keywords.";
fDesc[6] = "deleting directories or files you specify, permanently erase hidden images that your PC records secretly, cleaning your PC secret hidden blackbox, clearing your Browser Search Term History, removing your visited and typed URL list and permantly erasing all temporary files.";
fDesc[7] = "unsolicited e-mail on the Internet) in a more comfortable and effective way. This program works in a different way compared to others anti-spam programs. SpamPal works as a powerful filter between your server and your mail client.";
fDesc[8] = "allows you to convert values between a number of common (and not so common) Engineering-related units.";
fDesc[9] = "wizard. The learning modules are composed of flashcards that can contain audio, video, and images, and also examples of any type. The software comes with two ready to use learning modules, one about languages and other about world capitals";
fDesc[10] = ", but it’s different from others games alike since it has twelve-in-one solitaire games which is great in order not to get bored any soon. All twelve solitaire games offer a thorough explanation of how to play in the beginning.";
fDesc[11] = "will benefit from the many features MultiTerm has to offer. The application creates terminology databases that you can use with SDL Trados. The application creates those databases in a way that is most useful for translators.";
fDesc[12] = "well as brackets";
fDesc[13] = "organizations. It can be used as a diary, scheduler, or project management tool. It uses the classic Year Planner layout.";
fDesc[14] = "folder you want to search, provide a list of search terms, then select SEARCH.";
fDesc[15] = "press Ctrl + F12 after highlighting any term, a search engine will come up with the results on that term. At this moment this tool limits users to perform their searches using Internet Explorer and Yahoo! Search.";
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 = '...';
}
}