var fDesc=new Array(); fDesc[0] = "Easy Currencies is a program that displays realtime currency exchange rates. This program supports over 100 currencies, bitcoin, and four precious metals (Gold, Silver, Platinum and Palladium.) This application has a simple interface where you can enter the currency value and get instant results in more than 10 currencies; you can also customize this list."; 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 = ''; } }