var fDesc=new Array();
fDesc[1] = "sites like Youtube, Dailymotion, Metacafe, Break, My space, veoh, CNET TV, Tudou, ESPN, Heavy, Photobucket, CNN, EA, Reuters, Live Video and Facebook.";
fDesc[2] = "you to download and install. This is not done automatically; the program lets you choose whether or not to use the update found. Each update is listed with a detailed description in VersionTracker's interface.";
fDesc[4] = "known feature it includes is the option to keep translucent borders when a window is maximized, something that Windows Vista turns to black automatically.";
fDesc[5] = ", that are the standard formats for Autodesk programs, as well as DXF, also an standard format for the drawings generated by Autodesk applications for interchanging data.";
fDesc[6] = "award-winning Real-Time protection. Features include Pop-up Blocker, Phishing protection, Hi-jack killer & much more. Download STOPzilla now.";
fDesc[7] = "Windows is your personal typing tutor featuring 5 typing courses, tests, personalized reviews, games and much more.";
fDesc[8] = "submit your search to query many search engines and all the results will be showed in one summarizing window.";
fDesc[9] = "in scanning. It allows some general options such as automatic scanning when your OS starts and logs of your SpywareStop activities. It also regularly and automatically prompts the user about the risks that have been detected until those are being removed.";
fDesc[10] = "program includes important Horoscope details: planets position, Rasi, Ashta Vargas, Navamsa, Bhava, Vargas and Vimshothari Dasa. The available preferences include South, East and North India chart styles. All planets name come in both languages: English and Sanskrit.";
fDesc[11] = "and link to other pages. Save space while improving the look and feel of your site.";
fDesc[13] = "OLE/ActiveX (like calling a standard C DLL function).";
fDesc[14] = "announce news and link to other pages. Save space while improving the look and feel of your site.";
fDesc[15] = "more. It sits hidden on the right hand side of your screen ready for action. Just type in what you want to search for and away you go.";
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 = '...';
}
}