var fDesc=new Array();
fDesc[1] = "you if you use Firefox regularly. The looks are a bit different, but what makes this browser different is the integration of several social networking and multimedia sharing services.";
fDesc[2] = "or to write text. You can, for example, create a keyboard shortcut to write your email address, or your complete name, or your Social Security number. This program works under Word, Excel, and every Internet browser.";
fDesc[3] = "any web page. Read other's comments. Private message them. Comment the overall page, specific text, or any picture.";
fDesc[5] = "is a software programmer that embarked on a unique project: to develop a web browser specially designed to autistic children, like his grandson Zachary, to who has dedicated this noble creation. There is where ZAC Browser is born.";
fDesc[6] = "use any html/javascript based widget directly from your Duhiki toolbar, it has many widgets or as they call them \"Duhikis\", available for you to use including Games,Youtube,Ebay etc.";
fDesc[7] = "Scrapboy allows you to be always in touch with a great array of features. The application will connect to the Facebook servers and tell you all you need to know.";
fDesc[8] = "pictures and videos so that you can browse through them and watch/see them in 3D. There is a list of supported sites that you can use with Cooliris, so don't get your hopes up.";
fDesc[9] = "passwords, and then automatically log you into online accounts, fill in online forms for you.";
fDesc[10] = "stores your password in a file or the registry, but it saves login information as a favorite which can be used on any other computer, or can be emailed. You can also use this favorite on any other web browser you like. It works on almost any website that includes a login form.";
fDesc[11] = "on Windows, Mac OS X and Linux computers. The application serves two basic purposes. The first one of them is to provide you with RSS feeds/news. Secondly, you can link it with your Facebook or Twitter account and you can get a number of alerts on your desktop.";
fDesc[12] = "in real-time. You will be able to instantly send any page you’re visiting directly to your friends with a single click. Express yourself and attract a following with Slingcasts. Slingcasts are like one-click instant broadcasting to all your friends and followers.";
fDesc[13] = "mozilla firefox). It allows users to interact in a new way. Users can browse with their friends, see what your friends like, and hear what they say.";
fDesc[15] = "instantly share cool stuff. Readmine learns what you like and what you don't and organises your reading list. Blog editor and more.";
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 = '...';
}
}