var fDesc=new Array();
fDesc[0] = "It's simple to use and efficient piece of software which allows you to keep a close eye on popular european auto markets and supplies you with sale offers.
If you are in an European country and are looking to buy a new or used car, then you should try Moto Scanner. It is an application that scans specialized automotive websites such as mobile.de, autoscout24.de and much more and notifies you about specific car deals immediately after they are made public";
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 = '';
}
}