var fDesc=new Array();
fDesc[0] = "With livemint Desktop Alerts you can get business news, stock prices and gallery from livemint.com; general news from Sify.com and Cricket and Lifestyle news from HindustanTimes.com. It also allows you to add any RSS feed of your interest.
Features:
- Always up-to-date: new information flows into the livemint Alert so you don't have to go looking.
- Intelligent sidebars: Place livemint Alert along any screen edges, keeping them always visible or enable auto-hide for the smallest screen usage.
- Liquid layouts: livemint Alerts flow around your desktop as you drag and drop them, making it easy to customize your layout.";
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 = '';
}
}