var fDesc=new Array();
fDesc[1] = "enables organizations to reliably manage mission-critical information and confidently run today’s increasingly complex business applications. SQL Server 2005 allows companies to gain greater insight from their business information and achieve faster results for a competitive advantage.";
fDesc[2] = "out anymore under the belief of common phenomenon, and 'Gunbound' is the only battle is the ‘Lond’.Gunbound battle is the last battle game in the Lond, and it is really popular.";
fDesc[3] = "issuing no demands. The government responds by sending in its best special operations teams, only to have them obliterated. Live footage of the massacre is cut short by an unexpected wave of destruction that leaves military leaders stunned and in disbelief.";
fDesc[4] = "Games, Sid Meier's Civilization IV: Beyond the Sword offers the widest array of developments in the history of the Civilization franchise.";
fDesc[5] = "events of the last Spider-man movie, Spider-man 3. In this game, you will be able to roam around the whole New York city and put order as you go. A good thing about this game is that it is up to you as how you want to play. You are given a map which tells you where things are happening.";
fDesc[6] = "sound like something only accessible to great leaders like Julius Caesar or Napoleon, but there are already many games that have managed to convince you that you are able to create a world empire too just clicking your mouse.";
fDesc[7] = "strategy game. Among other developments, this expansion includes 6 new civilizations, 10 new leaders of civilization, 8 new scenarios and new units and buildings.";
fDesc[8] = "example, Registry Compactor, means Comodo registry cleaner not only clean your junk entries from your window’s registry but also reduce its size by compacting and your computer speed depends on the window’s registry size, smaller is faster.";
fDesc[9] = "series. As well as the TV show, the game is set in an Asian-like world in which the main protagonist has his adventures";
fDesc[11] = "Plot: In 2008 the area which includes Iran, Afghanistan, India and China has become in a new republic, the Democratic Republic of North Djombystan (DRND) The leaders of this country gave permission to USA government to make a subterranean base on its territory.";
fDesc[12] = "modern tactical game viewed from an overhead camera. The game features a role-playing futuristic story scenario where the USA has suffered nuclear destruction and has disintegrated to six nation states that have descended in to war.";
fDesc[13] = "group meetings, and manage worship teams.";
fDesc[15] = "of the Bible modern translation of the King James’s Bible. To retain the purity and stylistic beauty of the original King James, many scholars and church leaders who translated it to the modern Scripture,";
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 = '...';
}
}