var fDesc=new Array();
fDesc[0] = "Awareness E-book is a complete adaptation of the original paperback "Awareness - The Center of Being" by Zentrum Publishing, featuring 300 pages with photos and graphics. Formatted to fit your computer screen, Awareness E-book runs on all Windows computers.
Awareness - The Center of Being is a complete manual for Self-awareness (Self-realization) and includes a unique approach in the long sought Proof for the Existence of God.";
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 = '';
}
}