var fDesc=new Array();
fDesc[0] = "This utility is intended for determination of the type of the files upon their contents.
Given program differs from analogue, first of all that that majority of the similar programs for determination of the type of the file uses its extension i.e. the last three symbols after point.
But after all not always extension corresponds to the contents of the file, and in general sometimes file has an no extensions - then on you to help will come the utility File Type Verificator, which coming from analysis of the contents of the file will say you that it for file.";
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 = '';
}
}