var fDesc=new Array();
fDesc[1] = "Bars\". Microsoft Engineers now thougth it would be a good idea to change all the menus in order to make easier to see at a glance, Lets wait a little and see what the users think about this new experience. I think the change is good, but not that good.";
fDesc[2] = "especially for students and for those persons who want to built and improve their English and Urdu language skill and vocabulary. Their Cleantouch Urdu dictionary has a simple and user friendly user interface.";
fDesc[3] = "text and 3 different English translation of the recited verse. (Picktal, Yusuf Ali and Shakir). Here you will find Quran Translations available in 24 different languages.";
fDesc[4] = "words. User can select the word from the list box and the synonym is displayed in Urdu beneath the list box. CleanTouch English-Urdu Dictionary allows search of the first letter but subsequent letters initialize the search to the first letter";
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 = '...';
}
}