var fDesc=new Array(); fDesc[0] = "License Plate Detector detects, recognizes and records vehicle license plate information. It captures the information on the license plates detected in the scene. It searches and compares this information against a stored database of license plates to find a match. License Plate Detector is used for vehicular access control in parking lots and garages and for calculating related metrics such as duration of stay, and frequency of visits."; 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 = ''; } }