var fDesc=new Array(); fDesc[0] = "Urban Dictionary Search allows you to search definitions of words quickly on Urban Dictionary website. Just click on the icon and a popup appears where the word can be entered and the top definition(s) and corresponding usage(s) are loaded into the popup. There is also a link to the corresponding page on Urban Dictionary website for detailed definition(s) and usage(s) of the entered word."; 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 = ''; } }