var fDesc=new Array(); fDesc[0] = "IEeee is an addin to Internet Explorer that allows you to easily submit a defect about the page you are currently browsing.
Because it is integrated into IE it can capture a significant amount of extra information that normally wouldn't get included in a defect report, this includes:
- A Screen Shot of the page
- The source HTML of the page
- Any script files being used by the page
- Any CSS pages that are referenced in the page
- Details about the client browser configuration (e.g. screen resolution, browser version, ...)
- Assign default values for any field in the defect report (e.g. Area, Iteration, Assigned To, ...)"; 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 = ''; } }