var fDesc=new Array(); fDesc[0] = "MyZilla is a free desktop client for Bugzilla bug tracking system. By providing the means of working with a desktop application, it increases the productivity of all project members.
Main features:
- Http basic authentication implemented.
- Access bugzilla server configured on different port that the standar one.
- For unknown file types, open with window is shown (for attachment and export files).
- Attachment icon column added to the query results grid.
- Attachment list accesible from the bug preview pane.
- Menu option for checking new MyZilla version.
- Enhanced search for bugs(search criteria using any of the bugzilla fields).
- MailTo functinality for the asignee and reporter fields."; 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 = ''; } }