var fDesc=new Array();
fDesc[0] = "Navigate to a Page as Usual. Drag links from the loaded page to the IE Split Window orŸ Navigate to a Page from the IE-Split Address Bar and drag links to the default IE windowŸ Enable Frame Mode.
In “frames” mode all links in the default IE Window open in IE-Split Window. Tip: If you want to cancel frame mode for just a click, hold Alt key and click on the link. This “hot key” function is useful when you need to click to “Next” and “Previous” posts in a blog.";
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 = '';
}
}