var fDesc=new Array(); fDesc[0] = "Scott's Binary Clock is a clock that displays the current time in binary using a LED display. It's a little gadget or conversation piece for your desktop. It really doesn't serve much of a practical purpose, unless your goal is to display the time in a format that nobody but you can read. Emphasis has been placed on making the clock cool looking and realistic (the LEDs in the clock were obtained from taking pictures of real-world LEDs)

Several different sizes of binary clocks are available -- you can select between large, small, and horizontal versions. Check the screen shot page for pictures of the binary clock displays. There are also several backgrounds, including matte black, brushed aluminum, mahogany, and a very cool transparent background."; 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 = ''; } }