var fDesc=new Array(); fDesc[0] = "InfoPath Error Viewer provides an intuitive list to show all errors in the entire InfoPath form. You'll no longer have to find the validation errors by searching in individual view. It's developed as an InfoPath Add-in which works on both InfoPath 2007 and InfoPath 2010.

- View all errors in a list.
- Locate to a binding control of an error field.
- See the detail information of each error."; 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 = ''; } }