var fDesc=new Array();
fDesc[0] = "SlimBoat is a free, fast and secure web browser.
Main Features:
- Intelligent form filler: Fill and save web forms automatically. Log into online accounts with a single click.
- Convenient Facebook integration: Easily share a page, a picture or a piece of text on any page among your friends on Facebook.
- Ad Blocker: Eliminates obtrusive advertisements from web pages.
- Web Page and Text Translation: Select and translate any piece of text within any web page between any two languages.";
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 = '';
}
}