var fDesc=new Array(); fDesc[0] = "Wikipedia Plugin lets you create a Wikipedia plugin in your blog entry.
There are two ways of using it, you can either highlight some text that you want to point to Wikipedia and click on the Insert Wikipedia Link from the plugin list and that will automatically (by default) create a Wikipedia link from the text you’ve highlighted.
The other way of doing it is from the GUI."; 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 = ''; } }