var fDesc=new Array(); fDesc[0] = "TrafCam for TomTom Go provides audible and visual warning of a speed camera location on the navigation display. A sound is made when a camera first comes into range, and repeatedly as you get very close to the camera. An icon is drawn on the navigation display to show the location and speed limit of the camera.

Main features:
-User selectable warning by distance or time to reach camera.
-Camera database updates downloaded from our web site during subscription period.
-Speed-sensitive warnings - no sound is made if you are below the camera speed limit.
-Direction-sensitive warnings - no sound is made if the camera is pointing away from your direction of travel."; 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 = ''; } }