var fDesc=new Array();
fDesc[0] = "Between viral marketing campaigns, Internet memes, and addictive web sites, it can sometimes be hard to stay focused on what’s really important. However, the Internet is too valuable as a resource tool and communications platform for “pulling the plug” to be a viable option.
Eclipse is a personal website blocker that will temporarily block access to the distracting websites you specify, while leaving all other web sites accessible.";
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 = '';
}
}