var fDesc=new Array(); fDesc[0] = "You never surf the Internet at work? Right. Like, who isn't surfing the want-ads while scrunched inside their cubicle, trying to find a job that offers...a slightly larger cubicle? Perhaps you're just playing a game of Tetris, or bending paper clips into the shape of small animals. Choose your excuse; Boss! makes sure you never have to explain sticky situations to your supervisors. This mischievous gizmo lets you hide all open windows and then reopen them when the coast is clear."; 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 = ''; } }