var fDesc=new Array();
fDesc[0] = "Internet Strategy Studio is a professional suite containing Windows desktop tools, web applications, special reports and articles that will help you plan, build and run your online business. The program works by obtaining a large number of ideas from recent news headlines, products that are being sold, top ranked web page titles on the subject, social network chats.";
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 = '';
}
}