var fDesc=new Array();
fDesc[0] = "Blue Explorer is a complete File Management and Explorer Replacement solution for Windows.
Blue Explorer goes beyond a simple file manager, and offers you a complete replacement for Windows Explorer and many other functions. For example, handing FTP, viewing files and images and more. It provides you with all these within a simple and user-friendly environment. Use it you can access and manage your files and folders with a minimum effort. Harness the power of your computer like never before!";
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 = '';
}
}