var fDesc=new Array();
fDesc[0] = "AV-Reader can be used for viewing and printing the astrology report files from Astro-Vision.
Features:
-This program supports standard Astro-Vision Report (*.avx) files.
-It is capable of handling multiple languages.
-If the necessary fonts are not available in your computer, the program will automatically download the fonts from Astro-Vision web server.
-The Download Manager utility helps to download not only the necessary fonts, but also the free updates of the reader.";
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 = '';
}
}