var fDesc=new Array();
fDesc[0] = "TrackView connects your smart-phones, tablets and computers into a mobile security system. This allows you to monitor your home or any point of interest through real-time video stream. You can also have the program record the streams and send you instant alert messages to your mobile phones.
Push-to-talk lets you communicate with friends and family directly with two-way audio.";
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 = '';
}
}