var fDesc=new Array(); fDesc[0] = "Ever wondered how many cookies are on your computer and where they came from? This little utility will not only show you but also lets you delete the ones you don't want. It will present you with a list of all the cookies on your computer, date and time they were created, life expectancy and show you the web site that put them there."; 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 = ''; } }