var fDesc=new Array(); fDesc[0] = "Endy’s Tinkering Calculator is a stand alone program for the mmorpg game Asheron’s Call. In just a few steps it allows you to see what your chances are of successfully tinking an item from tink 1 to tink 10. Just select the tinkering skill you will be using, provide your base tinkering skill level, select the spells that you are using, the workmanship of the item you are tinkering and the salvage you are using to tink it with."; 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 = ''; } }