var fDesc=new Array(); fDesc[0] = "Calculator Widget is a very small and simple calculator.
The widget has a beautiful button design with a gradient black color. It has mouse-over and mouse-away effects. The background of the calculator is transparent.
It only provides the following simple mathematical operations: addition, subtraction, division, and multiplication."; 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 = ''; } }