var fDesc=new Array();
fDesc[0] = "All the great features of LogicCoach 9 plus all the terrific new exercises found in the tenth edition of Patrick Hurley's A Concise Introduction to Logic.
LogicCoach is the most complete computer access to the Hurley exercises and the evaluation of the work done to answer them. No other program for the Hurley text does anywhere near as much
Developed by Nelson Pole in collaboration with Patrick J. Hurley, Logic Coach interacts with students- guiding, coaching, and helping them to solve virtually every exercise in the textbook.";
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 = '';
}
}