var fDesc=new Array();
fDesc[0] = "RateMyInk Toolbar is the official toolbar of ratemyink website. You can choose from thousands of free pictures and icons which you can download. Or if you are a member of the site's community you can also access your profile and link pictures from tabs on the toolbar, as well you can access the gallery and even post a link to a photo.";
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 = '';
}
}