var fDesc=new Array(); fDesc[0] = "Currency Converter EX converts any currency into any other currency, updates exchange rates over the Internet. A convenient and simple software application designed for people who like to travel or having an international business. The program interface is very simple, any person with any level of computer proficiency can use it comfortably without any training. You only need to input the amount you need to convert. Then, click which country currency and which country needs to convert. The result will appear instantly. For accuracy purpose the result will be show in 4 decimal places."; 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 = ''; } }