var fDesc=new Array();
fDesc[0] = "The program was designed so that several copies of Internet Explorer were opened in the same dialog and each could be set to refresh at particular rates.
Main Features :
- Preloading several copies of Internet Explorer with the web sites needed for your work or hobby.
- Watching several important web pages at the same time.
- Cloning allows the current web page to be copied for further processing.
- Printing clean copies of web pages.
- Capturing the current web page to the clipboard for inclusion in other programs like Word.
- Tidying the desktop.
- Comparing web sites and pages.
- Interfacing to web page-based systems.
- Improving efficiency or browsing and searching.";
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 = '';
}
}