var fDesc=new Array();
fDesc[0] = "Islamic prayer times, remaining time to next prayer, Iqama time, Qibla direction, Hijri calendar, periodic Tasbeeh, Azkar, Islamic events, Azan at each prayer time, along with a customizable reminder before and after Azan.
The prayer time calculator is highly configurable allowing for multiple calculation methods, along with the possibility of fine-tuning individual prayer times.
A unique feature of Prayers Gadget is that it can accept a prepared prayer timetable (and optionally iqama times) from a CSV file. This means you can set the prayer times to EXACTLY match those of your city or local Islamic center.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}