var fDesc=new Array(); fDesc[0] = "The purpose of the program was to create a mirror image of the web version without having to open up your browser. The program parses the XML cache from the online version of my woot-checker and puts the information in the appropriate place. The built-in timer auto-refreshes the content at the same intervals the website would. To save on time and bandwidth the program only downloads the item image if the item has changed. The program also minimizes to the system tray allowing you to continue what you were doing (not that you'll be very productive during a woot-off)."; 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 = ''; } }