var fDesc=new Array(); fDesc[0] = "Cookie Jar is a utility program to examine the contents of the cookie files on your computer. It can show you the cookies that have been set by web sites you have visited with your browser and allow you too see the details contained inside them. You can view, edit and even delete unwanted cookies. Shows when cookies were created and when they will expire."; 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 = ''; } }