var fDesc=new Array();
fDesc[0] = "Often when we visit friends and want to show them the pictures we've taken of girls seen on the beach we think: my flash memory could be infected with a virus; how can I prevent that?
It's always good to prevent, even if you cannot always win. A good solution against viruses spread via removable storage media could be the USBFillSpace program. Protection is achieved by filling the unused space on the drive with a dummy file; in 95% of the cases this prevents infection.";
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 = '';
}
}