var fDesc=new Array(); fDesc[0] = "Vision problems affect most of the population during their lives: color blindness, cataracts, light sensitivity, glaucoma, macular degradation or blurry vision, just to name few common issues. The US government has acknowledged the problem and published "Section 508", a requirement that federal agencies and major web sites must adhere to in order to support individuals with disabilities. The European Union has adopted a similar standard for its sites, the W3C WCAG. Digital Lens simulates some of the most common vision impairment conditions by modifying the desktop to emulate the condition, allowing companies to identify issues and modify the design to be accessible to more users. Digital Lens can be used to review the UI and visuals of applications, web sites and even authoring and design tools. UI elements that are inaccessible can be detected at a glance."; 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 = ''; } }