var fDesc=new Array();
fDesc[1] = "to fully customize its look and feel, and can synchronize your computer's clock with Atomic Time Servers.";
fDesc[2] = "enables those who understand the English language to examine and read the original Old and New testaments of the Holy Bible which were originally written in Hebrew – The Old, and Greek – The New";
fDesc[3] = "game, you play a book collector who visits London on vacations. On your search for clues, you will explore iconic locations of the beautiful city of London including the Savoy Hotel and Theatre, the Tower of London, Tower Bridge, Westminster Abby, among others.";
fDesc[4] = "are animated and rings like real. So what is the different with a real one? You'll see this one is a little joker on holidays.";
fDesc[5] = "much research in cyber market to find a unique solution of my problem, and I have done it. xReminder Pro is a powerful personal event manager with very easy to use interface. Unlike my personal secretary it is very handy in operation and performance.";
fDesc[6] = "the legendary Big Ben and the magnificent Palace of Westminster with a glimpse of the ancient Westminster Abbey.";
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 = '...';
}
}