var fDesc=new Array();
fDesc[0] = "Drive HD Dash Cam Player lets you view and edit your dash cam footage along with GPS, Compass, and G-Sensor data.
Main features:
- Easy playback of multiple files from your Drive HD dash cam
- For GPS enabled models, displays your route on a Google® Map along with Speed, Acceleration, and Compass information
- Simultaneous front and rear cam playback for dual camera models
- Combine and/or trim video clips (only available on PC version) for easy sharing or to create video compilations";
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 = '';
}
}