var fDesc=new Array();
fDesc[0] = "iTech Logging is a sophisticated solution for application specific protocolling, program monitoring and execution analysis - even on remote end-user computers.
iTech Logging increases the productivity of software developers as well as members of test, support and hotline teams. Even your customers can use it for first level analysis, saving you time and money.
iTech Logging satisfies advanced technical requirements and has proven in extensive as well as in small software development projects.";
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 = '';
}
}