var fDesc=new Array();
fDesc[0] = "Alt-Tab Thingy is for Windows XP, Vista & 7 only.
If you are not familiar with the Alt-Tab task switcher in Windows, it's a keyboard short-cut (hot-key) to enable fast switching between applications/windows. This feature has been in Windows since Windows 3.0 and is largely unchanged since Windows '95! Alt-Tab Thingy is a replacement to add brand new features to help you switch tasks faster and more efficiently than ever before!";
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 = '';
}
}