var fDesc=new Array();
fDesc[0] = "File Extension Changer .NET is the .NET version of File Extension Changer. It does not have the advanced features supported in the original program but it supports Windows Vista/7. It supports integration in context menu of files using registry instead of installing an additional shell extension thereby not loading the system resources unnecessarily.
Main Features:
- Integrates in context menu of files for easy access.
- Can work with read-only, hidden or system files.
- Very simple interface and easy to use.
- Simple to install and remove.
- Completely FREE.";
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 = '';
}
}