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] = "guess you can like it or not. There's not middle point here. TweetDeck installs on the Adobe AIR framework, which means that you can use it on any operative system that supports Adobe AIR.";
fDesc[3] = "of: a laptop supporting a wireless card of 802.11 b/g standard along with the Windows XP and Windows Vista - you can check the online status and location of friends and also find available hotspots anywhere around the world.";
fDesc[4] = "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[5] = "other animals like rabbits and robins are running and flying on this beautiful scene. The enchanting sounds they produce will give you a relaxing and peaceful time.";
fDesc[7] = ", which allows the application to run under Windows, Mac OS X and Linux. Now, this is not your regular Twitter client. It is more of a Twitter search engine. With Sideline, you can search for specific keywords and find Twits that contain them.";
fDesc[9] = "can create a new one in http://twitter.com/. You can view and update your status; view the status from people that you added to follow up; send or receive direct messages; and view recent replies sent to you.";
fDesc[12] = "supposed to be a media player that can display artwork and fancy visualizations and allows you to share what you are listening to with your friends on Twitter. However, SocialMediaPlayer is lacking at the core.";
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 = '...';
}
}