var fDesc=new Array();
fDesc[0] = "File Association Editor is a program for examining and editing the Registry settings which tell Windows how to open files depending on the extension name. You can easily:
- add new Explorer right mouse click menu items,
- change the Icon shown by Explorer,
- repair corrupted file associations, such as damage caused by installing and removing software,
- create new associations.";
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 = '';
}
}