var fDesc=new Array();
fDesc[0] = "AxarScan is an hexadecimal editor, that can list the strings contained in a file.
It is easy to use as a text editor.
You can type strings of text: the right box is a mini text-editor.
This program has standard commands to fill, insert, cut, copy and paste selected bytes.
Also you can make hexadecimal to decimal conversion and vice versa.";
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 = '';
}
}