var fDesc=new Array();
fDesc[0] = "The Locksmith Connect is a suite of Locksmith Technical Software that helps locksmiths in the field and store owners earn more revenue with less stress by getting the information they need in a timely and convenient manner.
The core program includes: Automotive Technical Info: information is updated in real-time, ongoing corrections, user feedback, links and Tech Tips in an easy to use Year/Make/Model format. Programming and cloning information, key make methodologies. The program incorporates a powerful search feature and communication tools that can help address any locksmith related questions.";
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 = '';
}
}