var fDesc=new Array();
fDesc[0] = "My Personal Informer is the application which will help you to track changes of context on various sites:
- Competitors' Web sites.
- On-line forums or blogs.
- News sites and portals.
- On-line auctions.
- Sites with photos of public people and news about them.
- On-line coupons with discounts or time-limited actions.
- Sites with job notices.
- Sites of manufacturers of a software with news about software and updates.
- and more...";
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 = '';
}
}