var fDesc=new Array();
fDesc[0] = "The Wikango One combines the GPS and the GPRS
technologies to be more powerful and flexible. The
updates are done automatically, there's no need to
connect the device to a computer. The LIVE function (information about speed camera ) locations in real time, optional) allows you to send and receive warnings in REAL TIME.";
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 = '';
}
}