var fDesc=new Array();
fDesc[0] = "Instantly hides all web browser or other windows with a push of a button.
Just press Ctrl Space and all of your private windows will disappear from your screen
and Window's taskbar. Press Ctrl Space to make your private windows reappear.
You may use it to instantly hide any program's window, including:
- Internet Explorer
- Yahoo, AOL or MSN Messenger
- Firefox
- Gmail Chat
- Windows Media Player
Easy To Customize:
You may easily change which program's windows that The Boss Button will hide.
You may also choose which keys hide and show windows .";
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 = '';
}
}