var fDesc=new Array();
fDesc[0] = "Pocket PC Magazine Best Software Awards 2006 nominee - Virtual Explorer is a revolutionary and powerful integrated solution designed to replace the rather restricted features of the standard Pocket PC file explorer. Built upon an impressive framework of robust and very fast C code Virtual Explorer is faster, has more features, looks nicer and offers many advantages to the built-in Pocket PC file explorer:
Powerful file explorer
Integrated registry editor
Recycle bin
.ZIP support
Strong encryption
Department of Defense compliant file shredder";
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 = '';
}
}