var fDesc=new Array();
fDesc[0] = "Websitemirror is a small program to download complete websites to your local disk. A new and easy to use software that you can get it for free.
A software that help you search any link and open it on a window. The site-structure is shown in the left part of the window. Its possible to browse through the site structure without searching links in the web site.";
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 = '';
}
}