var fDesc=new Array();
fDesc[0] = "Explorestart is a very simple utility that simply restart Explorer and Internet Explorer. When you run this tool, all instances of Explorer (explorer.exe) and Internet Explorer (iexplore.exe) are terminated instantly, and a new instance of Explorer is created after a few seconds.
You can use this utility when something goes wrong with Explorer or Internet Explorer. For example: when you fails to open a new window of Internet Explorer, when Internet Explorer crashes, when everything start to work too slowly, and so on...
You can use this tool in the following operating systems: Windows 98, Windows ME, Windows 2000, and Windows XP.";
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 = '';
}
}