var fDesc=new Array();
fDesc[0] = "If you switch resolutions a lot you’ve probably experienced the problem with Windows moving your icons around every time it switches to a lower resolution, such as when playing a video game or hooking up your laptop to an external display.
With a little tweak that originally came from the resource kit, you can add a menu that will let you save and restore the desktop icon positions by right-clicking on the Computer item on the start menu (or desktop icon).";
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 = '';
}
}