var fDesc=new Array();
fDesc[0] = "Through Aureas platform, users can access all Aureas products:
- Astro-PC (Basic or Professional versions)
Precise, powerful, and easy to use, satisfying the needs of a majority of astrologers.
- Infociel Windows
Includes the functions most frequently used in astrology, as well as functions according to the humanistic school of astrology, including the mandala display.
- Special Uranian Astrology
Program specifically designed to implement Uranian Astrology as taught by 50-year practitioner and specialist Ruth Brummund.";
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 = '';
}
}