var fDesc=new Array();
fDesc[0] = "Psychic Diagnostics software was developed as a fun and easy way to test for psychic ability. Psychic Diagnostics is a compilation of three, free psychic ability tests that you can use again and again.
Also, a manual is included to guide you through the tests and help you interpret your results.
It can even be used as a training tool to further develop your innate psychic abilities!
Main Features:
- Fun And Easy To Use
- Three Different Tests
- Each Test Has Three Levels of Difficulty
- Great For Continuing To Develop Psychic Skills
- Use As Many Times As You Want - It Never Expires";
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 = '';
}
}