var fDesc=new Array();
fDesc[0] = "Pitaschio is a freeware which makes it convenient to use Microsoft Windows.
The Pitaschio includes a large number of useful features.
For example :
- Snap a window to other windows when moving and resizing
- Restrict a window position to inside of the screen
- Always keep a window above all other windows
- Minimize a window to the system tray
- Use small icons in the desktop
- Disable Windows key, Insert key, Alt key etc.
- Lock the mouse or keyboard while cleaning them
- Take statistics about mouse and keyboard
- Calculate Moon's age";
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 = '';
}
}