var fDesc=new Array();
fDesc[0] = "Virtual Explorer is an application developed to replace the standard Pocket PC file management app. 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.
Main Features:
- 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 = '';
}
}