var fDesc=new Array();
fDesc[0] = "Anti-Social is an application that makes it easy for you to target and block any distracting website so you can be more productive. You can set Anti-Social blocks for as little as 15 minutes or as many as 8 hours.
Main features:
- Block distracting sites.
- Strong blocking features.
- Fully supported and guaranteed.
- Easy to customize.
- Timed blocks make you work.
- Perfect for school, work-from-home.";
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 = '';
}
}