var fDesc=new Array();
fDesc[0] = "MediaQuran is an application that accommodates various sources about the Holy Quran.
It's a very easy to use program with a friendly interface that provides a real help to understand more about the Holy Quran.
It's designed with easy buttons that make better get what is about this program.";
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 = '';
}
}