var fDesc=new Array();
fDesc[0] = "iPlus Manager - application designed for easy management of Internet connection and text messaging. iPlus Manager ensures high comfort of Internet surfing, anytime and anywhere.
iPlus is a modern solution providing mobile Internet access any place, anytime.
iPlus is a professional tool for everyday work, help in education and excellent entertainment.
It is also an application that is friendly and simple to use.";
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 = '';
}
}