var fDesc=new Array();
fDesc[0] = "MemLok3: Memorize scripture using visual cues to "start you"
A proven method to remember faster and longer!
-Create your own cards. Come up with your own topics
-Send your card creations to friends by e-mail or Facebook
-Scripture memory made easy through verse - picture association on flashcards.
-Designed for Windows but runs on the Macintosh in Windows mode";
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 = '';
}
}