var fDesc=new Array();
fDesc[0] = "Password protect your private media files and view them seamlessly in Windows Media Center.
Squirrel Stash allows you to securely protect your pictures, videos and audio files in a seamless Media Center experience. Media files are stored in a reliable and highly-secure encrypted stash and can only be accessed if a valid password is entered.
A stash uses a sophisticated encrypted file system to hold media files of any type. Strong (AES, 256-bit key, certified by NIST) encryption is used to ensure that stash files can only be accessed with a valid password.";
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 = '';
}
}