var fDesc=new Array(); fDesc[0] = "Skalc is a simple, skinnable calculator. Suppports the basic math operations (add, subtract, multiply, and divide) and is easy to skin. Helps finish off that fully-customized desktop.

Skalc is a skinnable replacement for the standard Windows calculator. It's useful when making skins, web pages, or figuring out the exact weight your getaway car can carry when robbing a bank*. Skalc also features fully-alpha blended skins and can handle basic math functions."; 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 = ''; } }