var fDesc=new Array();
fDesc[0] = "This software gives the user the ability to compile a database or multi databases of breeds of dogs or an individual breed database. Within a matter of no time you can have all your dogs details and pedigree info in 1 convenient place along with any photos you wish to include.
The CompanionXP boasts a simple but very fast pedigree planner to assist you with your planned mating's etc.";
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 = '';
}
}